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 unsigned long arg6
= (unsigned long) 0 ;
1866 otk::OtkWidget
*result
;
1868 PyObject
* obj0
= 0 ;
1869 PyObject
* obj1
= 0 ;
1870 PyObject
* obj3
= 0 ;
1871 PyObject
* obj5
= 0 ;
1873 if(!PyArg_ParseTuple(args
,(char *)"OO|iOiO:new_OtkWidget",&obj0
,&obj1
,&arg3
,&obj3
,&arg5
,&obj5
)) goto fail
;
1874 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkEventDispatcher
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1875 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1877 if ((SWIG_ConvertPtr(obj3
,(void **) &argp4
, SWIGTYPE_p_Cursor
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
1881 arg6
= (unsigned long) PyInt_AsLong(obj5
);
1882 if (PyErr_Occurred()) SWIG_fail
;
1884 result
= (otk::OtkWidget
*)new otk::OtkWidget(arg1
,arg2
,(otk::OtkWidget::Direction
)arg3
,arg4
,arg5
,arg6
);
1886 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__OtkWidget
, 1);
1893 static PyObject
*_wrap_new_OtkWidget(PyObject
*self
, PyObject
*args
) {
1898 argc
= PyObject_Length(args
);
1899 for (ii
= 0; (ii
< argc
) && (ii
< 6); ii
++) {
1900 argv
[ii
] = PyTuple_GetItem(args
,ii
);
1902 if ((argc
>= 1) && (argc
<= 2)) {
1906 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OtkWidget
, 0) == -1) {
1915 return _wrap_new_OtkWidget__SWIG_0(self
,args
);
1918 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
1921 return _wrap_new_OtkWidget__SWIG_0(self
,args
);
1925 if ((argc
>= 2) && (argc
<= 6)) {
1929 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OtkEventDispatcher
, 0) == -1) {
1939 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_otk__Style
, 0) == -1) {
1948 return _wrap_new_OtkWidget__SWIG_1(self
,args
);
1951 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
1955 return _wrap_new_OtkWidget__SWIG_1(self
,args
);
1959 if (SWIG_ConvertPtr(argv
[3], (void **) &ptr
, SWIGTYPE_p_Cursor
, 0) == -1) {
1968 return _wrap_new_OtkWidget__SWIG_1(self
,args
);
1971 _v
= (PyInt_Check(argv
[4]) || PyLong_Check(argv
[4])) ? 1 : 0;
1975 return _wrap_new_OtkWidget__SWIG_1(self
,args
);
1978 _v
= (PyInt_Check(argv
[5]) || PyLong_Check(argv
[5])) ? 1 : 0;
1981 return _wrap_new_OtkWidget__SWIG_1(self
,args
);
1990 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'new_OtkWidget'");
1995 static PyObject
*_wrap_delete_OtkWidget(PyObject
*self
, PyObject
*args
) {
1996 PyObject
*resultobj
;
1997 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
1998 PyObject
* obj0
= 0 ;
2000 if(!PyArg_ParseTuple(args
,(char *)"O:delete_OtkWidget",&obj0
)) goto fail
;
2001 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2004 Py_INCREF(Py_None
); resultobj
= Py_None
;
2011 static PyObject
*_wrap_OtkWidget_update(PyObject
*self
, PyObject
*args
) {
2012 PyObject
*resultobj
;
2013 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2014 PyObject
* obj0
= 0 ;
2016 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_update",&obj0
)) goto fail
;
2017 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2020 Py_INCREF(Py_None
); resultobj
= Py_None
;
2027 static PyObject
*_wrap_OtkWidget_exposeHandler(PyObject
*self
, PyObject
*args
) {
2028 PyObject
*resultobj
;
2029 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2030 XExposeEvent
*arg2
= 0 ;
2031 PyObject
* obj0
= 0 ;
2032 PyObject
* obj1
= 0 ;
2034 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkWidget_exposeHandler",&obj0
,&obj1
)) goto fail
;
2035 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2036 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XExposeEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2038 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
2040 (arg1
)->exposeHandler((XExposeEvent
const &)*arg2
);
2042 Py_INCREF(Py_None
); resultobj
= Py_None
;
2049 static PyObject
*_wrap_OtkWidget_configureHandler(PyObject
*self
, PyObject
*args
) {
2050 PyObject
*resultobj
;
2051 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2052 XConfigureEvent
*arg2
= 0 ;
2053 PyObject
* obj0
= 0 ;
2054 PyObject
* obj1
= 0 ;
2056 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkWidget_configureHandler",&obj0
,&obj1
)) goto fail
;
2057 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2058 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XConfigureEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2060 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
2062 (arg1
)->configureHandler((XConfigureEvent
const &)*arg2
);
2064 Py_INCREF(Py_None
); resultobj
= Py_None
;
2071 static PyObject
*_wrap_OtkWidget_window(PyObject
*self
, PyObject
*args
) {
2072 PyObject
*resultobj
;
2073 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2075 PyObject
* obj0
= 0 ;
2077 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_window",&obj0
)) goto fail
;
2078 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2079 result
= ((otk::OtkWidget
const *)arg1
)->window();
2083 resultptr
= new Window((Window
&) result
);
2084 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_Window
, 1);
2092 static PyObject
*_wrap_OtkWidget_parent(PyObject
*self
, PyObject
*args
) {
2093 PyObject
*resultobj
;
2094 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2095 otk::OtkWidget
*result
;
2096 PyObject
* obj0
= 0 ;
2098 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_parent",&obj0
)) goto fail
;
2099 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2100 result
= (otk::OtkWidget
*)((otk::OtkWidget
const *)arg1
)->parent();
2102 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__OtkWidget
, 0);
2109 static PyObject
*_wrap_OtkWidget_children(PyObject
*self
, PyObject
*args
) {
2110 PyObject
*resultobj
;
2111 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2112 otk::OtkWidget::OtkWidgetList
*result
;
2113 PyObject
* obj0
= 0 ;
2115 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_children",&obj0
)) goto fail
;
2116 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2118 otk::OtkWidget::OtkWidgetList
const &_result_ref
= ((otk::OtkWidget
const *)arg1
)->children();
2119 result
= (otk::OtkWidget::OtkWidgetList
*) &_result_ref
;
2122 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__OtkWidget__OtkWidgetList
, 0);
2129 static PyObject
*_wrap_OtkWidget_screen(PyObject
*self
, PyObject
*args
) {
2130 PyObject
*resultobj
;
2131 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2132 unsigned int result
;
2133 PyObject
* obj0
= 0 ;
2135 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_screen",&obj0
)) goto fail
;
2136 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2137 result
= (unsigned int)((otk::OtkWidget
const *)arg1
)->screen();
2139 resultobj
= PyInt_FromLong((long)result
);
2146 static PyObject
*_wrap_OtkWidget_rect(PyObject
*self
, PyObject
*args
) {
2147 PyObject
*resultobj
;
2148 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2150 PyObject
* obj0
= 0 ;
2152 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_rect",&obj0
)) goto fail
;
2153 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2155 otk::Rect
const &_result_ref
= ((otk::OtkWidget
const *)arg1
)->rect();
2156 result
= (otk::Rect
*) &_result_ref
;
2159 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Rect
, 0);
2166 static PyObject
*_wrap_OtkWidget_move__SWIG_0(PyObject
*self
, PyObject
*args
) {
2167 PyObject
*resultobj
;
2168 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2169 otk::Point
*arg2
= 0 ;
2170 PyObject
* obj0
= 0 ;
2171 PyObject
* obj1
= 0 ;
2173 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkWidget_move",&obj0
,&obj1
)) goto fail
;
2174 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2175 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2177 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
2179 (arg1
)->move((otk::Point
const &)*arg2
);
2181 Py_INCREF(Py_None
); resultobj
= Py_None
;
2188 static PyObject
*_wrap_OtkWidget_move__SWIG_1(PyObject
*self
, PyObject
*args
) {
2189 PyObject
*resultobj
;
2190 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2193 PyObject
* obj0
= 0 ;
2195 if(!PyArg_ParseTuple(args
,(char *)"Oii:OtkWidget_move",&obj0
,&arg2
,&arg3
)) goto fail
;
2196 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2197 (arg1
)->move(arg2
,arg3
);
2199 Py_INCREF(Py_None
); resultobj
= Py_None
;
2206 static PyObject
*_wrap_OtkWidget_move(PyObject
*self
, PyObject
*args
) {
2211 argc
= PyObject_Length(args
);
2212 for (ii
= 0; (ii
< argc
) && (ii
< 3); ii
++) {
2213 argv
[ii
] = PyTuple_GetItem(args
,ii
);
2219 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OtkWidget
, 0) == -1) {
2229 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_otk__Point
, 0) == -1) {
2237 return _wrap_OtkWidget_move__SWIG_0(self
,args
);
2245 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OtkWidget
, 0) == -1) {
2254 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
2258 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
2261 return _wrap_OtkWidget_move__SWIG_1(self
,args
);
2267 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'OtkWidget_move'");
2272 static PyObject
*_wrap_OtkWidget_setWidth(PyObject
*self
, PyObject
*args
) {
2273 PyObject
*resultobj
;
2274 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2276 PyObject
* obj0
= 0 ;
2278 if(!PyArg_ParseTuple(args
,(char *)"Oi:OtkWidget_setWidth",&obj0
,&arg2
)) goto fail
;
2279 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2280 (arg1
)->setWidth(arg2
);
2282 Py_INCREF(Py_None
); resultobj
= Py_None
;
2289 static PyObject
*_wrap_OtkWidget_setHeight(PyObject
*self
, PyObject
*args
) {
2290 PyObject
*resultobj
;
2291 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2293 PyObject
* obj0
= 0 ;
2295 if(!PyArg_ParseTuple(args
,(char *)"Oi:OtkWidget_setHeight",&obj0
,&arg2
)) goto fail
;
2296 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2297 (arg1
)->setHeight(arg2
);
2299 Py_INCREF(Py_None
); resultobj
= Py_None
;
2306 static PyObject
*_wrap_OtkWidget_width(PyObject
*self
, PyObject
*args
) {
2307 PyObject
*resultobj
;
2308 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2310 PyObject
* obj0
= 0 ;
2312 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_width",&obj0
)) goto fail
;
2313 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2314 result
= (int)((otk::OtkWidget
const *)arg1
)->width();
2316 resultobj
= PyInt_FromLong((long)result
);
2323 static PyObject
*_wrap_OtkWidget_height(PyObject
*self
, PyObject
*args
) {
2324 PyObject
*resultobj
;
2325 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2327 PyObject
* obj0
= 0 ;
2329 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_height",&obj0
)) goto fail
;
2330 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2331 result
= (int)((otk::OtkWidget
const *)arg1
)->height();
2333 resultobj
= PyInt_FromLong((long)result
);
2340 static PyObject
*_wrap_OtkWidget_resize__SWIG_0(PyObject
*self
, PyObject
*args
) {
2341 PyObject
*resultobj
;
2342 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2343 otk::Point
*arg2
= 0 ;
2344 PyObject
* obj0
= 0 ;
2345 PyObject
* obj1
= 0 ;
2347 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkWidget_resize",&obj0
,&obj1
)) goto fail
;
2348 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2349 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2351 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
2353 (arg1
)->resize((otk::Point
const &)*arg2
);
2355 Py_INCREF(Py_None
); resultobj
= Py_None
;
2362 static PyObject
*_wrap_OtkWidget_resize__SWIG_1(PyObject
*self
, PyObject
*args
) {
2363 PyObject
*resultobj
;
2364 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2367 PyObject
* obj0
= 0 ;
2369 if(!PyArg_ParseTuple(args
,(char *)"Oii:OtkWidget_resize",&obj0
,&arg2
,&arg3
)) goto fail
;
2370 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2371 (arg1
)->resize(arg2
,arg3
);
2373 Py_INCREF(Py_None
); resultobj
= Py_None
;
2380 static PyObject
*_wrap_OtkWidget_resize(PyObject
*self
, PyObject
*args
) {
2385 argc
= PyObject_Length(args
);
2386 for (ii
= 0; (ii
< argc
) && (ii
< 3); ii
++) {
2387 argv
[ii
] = PyTuple_GetItem(args
,ii
);
2393 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OtkWidget
, 0) == -1) {
2403 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_otk__Point
, 0) == -1) {
2411 return _wrap_OtkWidget_resize__SWIG_0(self
,args
);
2419 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OtkWidget
, 0) == -1) {
2428 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
2432 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
2435 return _wrap_OtkWidget_resize__SWIG_1(self
,args
);
2441 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'OtkWidget_resize'");
2446 static PyObject
*_wrap_OtkWidget_setGeometry__SWIG_0(PyObject
*self
, PyObject
*args
) {
2447 PyObject
*resultobj
;
2448 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2449 otk::Rect
*arg2
= 0 ;
2450 PyObject
* obj0
= 0 ;
2451 PyObject
* obj1
= 0 ;
2453 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkWidget_setGeometry",&obj0
,&obj1
)) goto fail
;
2454 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2455 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2457 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
2459 (arg1
)->setGeometry((otk::Rect
const &)*arg2
);
2461 Py_INCREF(Py_None
); resultobj
= Py_None
;
2468 static PyObject
*_wrap_OtkWidget_setGeometry__SWIG_1(PyObject
*self
, PyObject
*args
) {
2469 PyObject
*resultobj
;
2470 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2471 otk::Point
*arg2
= 0 ;
2474 PyObject
* obj0
= 0 ;
2475 PyObject
* obj1
= 0 ;
2477 if(!PyArg_ParseTuple(args
,(char *)"OOii:OtkWidget_setGeometry",&obj0
,&obj1
,&arg3
,&arg4
)) goto fail
;
2478 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2479 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2481 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
2483 (arg1
)->setGeometry((otk::Point
const &)*arg2
,arg3
,arg4
);
2485 Py_INCREF(Py_None
); resultobj
= Py_None
;
2492 static PyObject
*_wrap_OtkWidget_setGeometry__SWIG_2(PyObject
*self
, PyObject
*args
) {
2493 PyObject
*resultobj
;
2494 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2499 PyObject
* obj0
= 0 ;
2501 if(!PyArg_ParseTuple(args
,(char *)"Oiiii:OtkWidget_setGeometry",&obj0
,&arg2
,&arg3
,&arg4
,&arg5
)) goto fail
;
2502 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2503 (arg1
)->setGeometry(arg2
,arg3
,arg4
,arg5
);
2505 Py_INCREF(Py_None
); resultobj
= Py_None
;
2512 static PyObject
*_wrap_OtkWidget_setGeometry(PyObject
*self
, PyObject
*args
) {
2517 argc
= PyObject_Length(args
);
2518 for (ii
= 0; (ii
< argc
) && (ii
< 5); ii
++) {
2519 argv
[ii
] = PyTuple_GetItem(args
,ii
);
2525 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OtkWidget
, 0) == -1) {
2535 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
2543 return _wrap_OtkWidget_setGeometry__SWIG_0(self
,args
);
2551 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OtkWidget
, 0) == -1) {
2561 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_otk__Point
, 0) == -1) {
2570 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
2574 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
2577 return _wrap_OtkWidget_setGeometry__SWIG_1(self
,args
);
2587 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OtkWidget
, 0) == -1) {
2596 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
2600 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
2604 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
2608 _v
= (PyInt_Check(argv
[4]) || PyLong_Check(argv
[4])) ? 1 : 0;
2611 return _wrap_OtkWidget_setGeometry__SWIG_2(self
,args
);
2619 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'OtkWidget_setGeometry'");
2624 static PyObject
*_wrap_OtkWidget_isVisible(PyObject
*self
, PyObject
*args
) {
2625 PyObject
*resultobj
;
2626 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2628 PyObject
* obj0
= 0 ;
2630 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_isVisible",&obj0
)) goto fail
;
2631 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2632 result
= (bool)((otk::OtkWidget
const *)arg1
)->isVisible();
2634 resultobj
= PyInt_FromLong((long)result
);
2641 static PyObject
*_wrap_OtkWidget_show(PyObject
*self
, PyObject
*args
) {
2642 PyObject
*resultobj
;
2643 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2644 bool arg2
= (bool) false ;
2645 PyObject
* obj0
= 0 ;
2646 PyObject
* obj1
= 0 ;
2648 if(!PyArg_ParseTuple(args
,(char *)"O|O:OtkWidget_show",&obj0
,&obj1
)) goto fail
;
2649 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2651 arg2
= (bool) PyInt_AsLong(obj1
);
2652 if (PyErr_Occurred()) SWIG_fail
;
2656 Py_INCREF(Py_None
); resultobj
= Py_None
;
2663 static PyObject
*_wrap_OtkWidget_hide(PyObject
*self
, PyObject
*args
) {
2664 PyObject
*resultobj
;
2665 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2666 bool arg2
= (bool) false ;
2667 PyObject
* obj0
= 0 ;
2668 PyObject
* obj1
= 0 ;
2670 if(!PyArg_ParseTuple(args
,(char *)"O|O:OtkWidget_hide",&obj0
,&obj1
)) goto fail
;
2671 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2673 arg2
= (bool) PyInt_AsLong(obj1
);
2674 if (PyErr_Occurred()) SWIG_fail
;
2678 Py_INCREF(Py_None
); resultobj
= Py_None
;
2685 static PyObject
*_wrap_OtkWidget_isFocused(PyObject
*self
, PyObject
*args
) {
2686 PyObject
*resultobj
;
2687 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2689 PyObject
* obj0
= 0 ;
2691 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_isFocused",&obj0
)) goto fail
;
2692 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2693 result
= (bool)((otk::OtkWidget
const *)arg1
)->isFocused();
2695 resultobj
= PyInt_FromLong((long)result
);
2702 static PyObject
*_wrap_OtkWidget_focus(PyObject
*self
, PyObject
*args
) {
2703 PyObject
*resultobj
;
2704 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2705 PyObject
* obj0
= 0 ;
2707 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_focus",&obj0
)) goto fail
;
2708 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2711 Py_INCREF(Py_None
); resultobj
= Py_None
;
2718 static PyObject
*_wrap_OtkWidget_unfocus(PyObject
*self
, PyObject
*args
) {
2719 PyObject
*resultobj
;
2720 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2721 PyObject
* obj0
= 0 ;
2723 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_unfocus",&obj0
)) goto fail
;
2724 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2727 Py_INCREF(Py_None
); resultobj
= Py_None
;
2734 static PyObject
*_wrap_OtkWidget_hasGrabbedMouse(PyObject
*self
, PyObject
*args
) {
2735 PyObject
*resultobj
;
2736 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2738 PyObject
* obj0
= 0 ;
2740 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_hasGrabbedMouse",&obj0
)) goto fail
;
2741 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2742 result
= (bool)((otk::OtkWidget
const *)arg1
)->hasGrabbedMouse();
2744 resultobj
= PyInt_FromLong((long)result
);
2751 static PyObject
*_wrap_OtkWidget_grabMouse(PyObject
*self
, PyObject
*args
) {
2752 PyObject
*resultobj
;
2753 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2755 PyObject
* obj0
= 0 ;
2757 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_grabMouse",&obj0
)) goto fail
;
2758 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2759 result
= (bool)(arg1
)->grabMouse();
2761 resultobj
= PyInt_FromLong((long)result
);
2768 static PyObject
*_wrap_OtkWidget_ungrabMouse(PyObject
*self
, PyObject
*args
) {
2769 PyObject
*resultobj
;
2770 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2771 PyObject
* obj0
= 0 ;
2773 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_ungrabMouse",&obj0
)) goto fail
;
2774 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2775 (arg1
)->ungrabMouse();
2777 Py_INCREF(Py_None
); resultobj
= Py_None
;
2784 static PyObject
*_wrap_OtkWidget_hasGrabbedKeyboard(PyObject
*self
, PyObject
*args
) {
2785 PyObject
*resultobj
;
2786 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2788 PyObject
* obj0
= 0 ;
2790 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_hasGrabbedKeyboard",&obj0
)) goto fail
;
2791 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2792 result
= (bool)((otk::OtkWidget
const *)arg1
)->hasGrabbedKeyboard();
2794 resultobj
= PyInt_FromLong((long)result
);
2801 static PyObject
*_wrap_OtkWidget_grabKeyboard(PyObject
*self
, PyObject
*args
) {
2802 PyObject
*resultobj
;
2803 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2805 PyObject
* obj0
= 0 ;
2807 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_grabKeyboard",&obj0
)) goto fail
;
2808 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2809 result
= (bool)(arg1
)->grabKeyboard();
2811 resultobj
= PyInt_FromLong((long)result
);
2818 static PyObject
*_wrap_OtkWidget_ungrabKeyboard(PyObject
*self
, PyObject
*args
) {
2819 PyObject
*resultobj
;
2820 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2821 PyObject
* obj0
= 0 ;
2823 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_ungrabKeyboard",&obj0
)) goto fail
;
2824 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2825 (arg1
)->ungrabKeyboard();
2827 Py_INCREF(Py_None
); resultobj
= Py_None
;
2834 static PyObject
*_wrap_OtkWidget_texture(PyObject
*self
, PyObject
*args
) {
2835 PyObject
*resultobj
;
2836 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2837 otk::BTexture
*result
;
2838 PyObject
* obj0
= 0 ;
2840 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_texture",&obj0
)) goto fail
;
2841 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2842 result
= (otk::BTexture
*)((otk::OtkWidget
const *)arg1
)->texture();
2844 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
2851 static PyObject
*_wrap_OtkWidget_setTexture(PyObject
*self
, PyObject
*args
) {
2852 PyObject
*resultobj
;
2853 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2854 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
2855 PyObject
* obj0
= 0 ;
2856 PyObject
* obj1
= 0 ;
2858 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkWidget_setTexture",&obj0
,&obj1
)) goto fail
;
2859 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2860 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2861 (arg1
)->setTexture(arg2
);
2863 Py_INCREF(Py_None
); resultobj
= Py_None
;
2870 static PyObject
*_wrap_OtkWidget_borderColor(PyObject
*self
, PyObject
*args
) {
2871 PyObject
*resultobj
;
2872 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2873 otk::BColor
*result
;
2874 PyObject
* obj0
= 0 ;
2876 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_borderColor",&obj0
)) goto fail
;
2877 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2878 result
= (otk::BColor
*)((otk::OtkWidget
const *)arg1
)->borderColor();
2880 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
2887 static PyObject
*_wrap_OtkWidget_setBorderColor(PyObject
*self
, PyObject
*args
) {
2888 PyObject
*resultobj
;
2889 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2890 otk::BColor
*arg2
= (otk::BColor
*) 0 ;
2891 PyObject
* obj0
= 0 ;
2892 PyObject
* obj1
= 0 ;
2894 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkWidget_setBorderColor",&obj0
,&obj1
)) goto fail
;
2895 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2896 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2897 (arg1
)->setBorderColor((otk::BColor
const *)arg2
);
2899 Py_INCREF(Py_None
); resultobj
= Py_None
;
2906 static PyObject
*_wrap_OtkWidget_borderWidth(PyObject
*self
, PyObject
*args
) {
2907 PyObject
*resultobj
;
2908 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2910 PyObject
* obj0
= 0 ;
2912 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_borderWidth",&obj0
)) goto fail
;
2913 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2914 result
= (int)((otk::OtkWidget
const *)arg1
)->borderWidth();
2916 resultobj
= PyInt_FromLong((long)result
);
2923 static PyObject
*_wrap_OtkWidget_setBorderWidth(PyObject
*self
, PyObject
*args
) {
2924 PyObject
*resultobj
;
2925 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2927 PyObject
* obj0
= 0 ;
2929 if(!PyArg_ParseTuple(args
,(char *)"Oi:OtkWidget_setBorderWidth",&obj0
,&arg2
)) goto fail
;
2930 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2931 (arg1
)->setBorderWidth(arg2
);
2933 Py_INCREF(Py_None
); resultobj
= Py_None
;
2940 static PyObject
*_wrap_OtkWidget_addChild(PyObject
*self
, PyObject
*args
) {
2941 PyObject
*resultobj
;
2942 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2943 otk::OtkWidget
*arg2
= (otk::OtkWidget
*) 0 ;
2944 bool arg3
= (bool) false ;
2945 PyObject
* obj0
= 0 ;
2946 PyObject
* obj1
= 0 ;
2947 PyObject
* obj2
= 0 ;
2949 if(!PyArg_ParseTuple(args
,(char *)"OO|O:OtkWidget_addChild",&obj0
,&obj1
,&obj2
)) goto fail
;
2950 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2951 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2953 arg3
= (bool) PyInt_AsLong(obj2
);
2954 if (PyErr_Occurred()) SWIG_fail
;
2956 (arg1
)->addChild(arg2
,arg3
);
2958 Py_INCREF(Py_None
); resultobj
= Py_None
;
2965 static PyObject
*_wrap_OtkWidget_removeChild(PyObject
*self
, PyObject
*args
) {
2966 PyObject
*resultobj
;
2967 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2968 otk::OtkWidget
*arg2
= (otk::OtkWidget
*) 0 ;
2969 PyObject
* obj0
= 0 ;
2970 PyObject
* obj1
= 0 ;
2972 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkWidget_removeChild",&obj0
,&obj1
)) goto fail
;
2973 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2974 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2975 (arg1
)->removeChild(arg2
);
2977 Py_INCREF(Py_None
); resultobj
= Py_None
;
2984 static PyObject
*_wrap_OtkWidget_isStretchableHorz(PyObject
*self
, PyObject
*args
) {
2985 PyObject
*resultobj
;
2986 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
2988 PyObject
* obj0
= 0 ;
2990 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_isStretchableHorz",&obj0
)) goto fail
;
2991 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2992 result
= (bool)((otk::OtkWidget
const *)arg1
)->isStretchableHorz();
2994 resultobj
= PyInt_FromLong((long)result
);
3001 static PyObject
*_wrap_OtkWidget_setStretchableHorz(PyObject
*self
, PyObject
*args
) {
3002 PyObject
*resultobj
;
3003 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
3004 bool arg2
= (bool) true ;
3005 PyObject
* obj0
= 0 ;
3006 PyObject
* obj1
= 0 ;
3008 if(!PyArg_ParseTuple(args
,(char *)"O|O:OtkWidget_setStretchableHorz",&obj0
,&obj1
)) goto fail
;
3009 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3011 arg2
= (bool) PyInt_AsLong(obj1
);
3012 if (PyErr_Occurred()) SWIG_fail
;
3014 (arg1
)->setStretchableHorz(arg2
);
3016 Py_INCREF(Py_None
); resultobj
= Py_None
;
3023 static PyObject
*_wrap_OtkWidget_isStretchableVert(PyObject
*self
, PyObject
*args
) {
3024 PyObject
*resultobj
;
3025 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
3027 PyObject
* obj0
= 0 ;
3029 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_isStretchableVert",&obj0
)) goto fail
;
3030 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3031 result
= (bool)((otk::OtkWidget
const *)arg1
)->isStretchableVert();
3033 resultobj
= PyInt_FromLong((long)result
);
3040 static PyObject
*_wrap_OtkWidget_setStretchableVert(PyObject
*self
, PyObject
*args
) {
3041 PyObject
*resultobj
;
3042 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
3043 bool arg2
= (bool) true ;
3044 PyObject
* obj0
= 0 ;
3045 PyObject
* obj1
= 0 ;
3047 if(!PyArg_ParseTuple(args
,(char *)"O|O:OtkWidget_setStretchableVert",&obj0
,&obj1
)) goto fail
;
3048 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3050 arg2
= (bool) PyInt_AsLong(obj1
);
3051 if (PyErr_Occurred()) SWIG_fail
;
3053 (arg1
)->setStretchableVert(arg2
);
3055 Py_INCREF(Py_None
); resultobj
= Py_None
;
3062 static PyObject
*_wrap_OtkWidget_cursor(PyObject
*self
, PyObject
*args
) {
3063 PyObject
*resultobj
;
3064 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
3066 PyObject
* obj0
= 0 ;
3068 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_cursor",&obj0
)) goto fail
;
3069 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3070 result
= ((otk::OtkWidget
const *)arg1
)->cursor();
3074 resultptr
= new Cursor((Cursor
&) result
);
3075 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_Cursor
, 1);
3083 static PyObject
*_wrap_OtkWidget_setCursor(PyObject
*self
, PyObject
*args
) {
3084 PyObject
*resultobj
;
3085 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
3088 PyObject
* obj0
= 0 ;
3089 PyObject
* obj1
= 0 ;
3091 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkWidget_setCursor",&obj0
,&obj1
)) goto fail
;
3092 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3093 if ((SWIG_ConvertPtr(obj1
,(void **) &argp2
, SWIGTYPE_p_Cursor
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
3095 (arg1
)->setCursor(arg2
);
3097 Py_INCREF(Py_None
); resultobj
= Py_None
;
3104 static PyObject
*_wrap_OtkWidget_bevelWidth(PyObject
*self
, PyObject
*args
) {
3105 PyObject
*resultobj
;
3106 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
3108 PyObject
* obj0
= 0 ;
3110 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_bevelWidth",&obj0
)) goto fail
;
3111 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3112 result
= (int)((otk::OtkWidget
const *)arg1
)->bevelWidth();
3114 resultobj
= PyInt_FromLong((long)result
);
3121 static PyObject
*_wrap_OtkWidget_setBevelWidth(PyObject
*self
, PyObject
*args
) {
3122 PyObject
*resultobj
;
3123 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
3125 PyObject
* obj0
= 0 ;
3127 if(!PyArg_ParseTuple(args
,(char *)"Oi:OtkWidget_setBevelWidth",&obj0
,&arg2
)) goto fail
;
3128 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3129 (arg1
)->setBevelWidth(arg2
);
3131 Py_INCREF(Py_None
); resultobj
= Py_None
;
3138 static PyObject
*_wrap_OtkWidget_direction(PyObject
*self
, PyObject
*args
) {
3139 PyObject
*resultobj
;
3140 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
3142 PyObject
* obj0
= 0 ;
3144 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_direction",&obj0
)) goto fail
;
3145 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3146 result
= (int)((otk::OtkWidget
const *)arg1
)->direction();
3148 resultobj
= PyInt_FromLong((long)result
);
3155 static PyObject
*_wrap_OtkWidget_setDirection(PyObject
*self
, PyObject
*args
) {
3156 PyObject
*resultobj
;
3157 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
3159 PyObject
* obj0
= 0 ;
3161 if(!PyArg_ParseTuple(args
,(char *)"Oi:OtkWidget_setDirection",&obj0
,&arg2
)) goto fail
;
3162 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3163 (arg1
)->setDirection((otk::OtkWidget::Direction
)arg2
);
3165 Py_INCREF(Py_None
); resultobj
= Py_None
;
3172 static PyObject
*_wrap_OtkWidget_style(PyObject
*self
, PyObject
*args
) {
3173 PyObject
*resultobj
;
3174 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
3176 PyObject
* obj0
= 0 ;
3178 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_style",&obj0
)) goto fail
;
3179 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3180 result
= (otk::Style
*)((otk::OtkWidget
const *)arg1
)->style();
3182 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Style
, 0);
3189 static PyObject
*_wrap_OtkWidget_setStyle(PyObject
*self
, PyObject
*args
) {
3190 PyObject
*resultobj
;
3191 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
3192 otk::Style
*arg2
= (otk::Style
*) 0 ;
3193 PyObject
* obj0
= 0 ;
3194 PyObject
* obj1
= 0 ;
3196 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkWidget_setStyle",&obj0
,&obj1
)) goto fail
;
3197 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3198 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3199 (arg1
)->setStyle(arg2
);
3201 Py_INCREF(Py_None
); resultobj
= Py_None
;
3208 static PyObject
*_wrap_OtkWidget_eventDispatcher(PyObject
*self
, PyObject
*args
) {
3209 PyObject
*resultobj
;
3210 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
3211 otk::OtkEventDispatcher
*result
;
3212 PyObject
* obj0
= 0 ;
3214 if(!PyArg_ParseTuple(args
,(char *)"O:OtkWidget_eventDispatcher",&obj0
)) goto fail
;
3215 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3216 result
= (otk::OtkEventDispatcher
*)(arg1
)->eventDispatcher();
3218 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__OtkEventDispatcher
, 0);
3225 static PyObject
*_wrap_OtkWidget_setEventDispatcher(PyObject
*self
, PyObject
*args
) {
3226 PyObject
*resultobj
;
3227 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
3228 otk::OtkEventDispatcher
*arg2
= (otk::OtkEventDispatcher
*) 0 ;
3229 PyObject
* obj0
= 0 ;
3230 PyObject
* obj1
= 0 ;
3232 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkWidget_setEventDispatcher",&obj0
,&obj1
)) goto fail
;
3233 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3234 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__OtkEventDispatcher
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3235 (arg1
)->setEventDispatcher(arg2
);
3237 Py_INCREF(Py_None
); resultobj
= Py_None
;
3244 static PyObject
* OtkWidget_swigregister(PyObject
*self
, PyObject
*args
) {
3246 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
3247 SWIG_TypeClientData(SWIGTYPE_p_otk__OtkWidget
, obj
);
3249 return Py_BuildValue((char *)"");
3251 static PyObject
*_wrap_new_OtkFocusWidget(PyObject
*self
, PyObject
*args
) {
3252 PyObject
*resultobj
;
3253 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
3254 int arg2
= (int) otk::OtkWidget::Horizontal
;
3255 otk::OtkFocusWidget
*result
;
3256 PyObject
* obj0
= 0 ;
3258 if(!PyArg_ParseTuple(args
,(char *)"O|i:new_OtkFocusWidget",&obj0
,&arg2
)) goto fail
;
3259 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3260 result
= (otk::OtkFocusWidget
*)new otk::OtkFocusWidget(arg1
,(otk::OtkWidget::Direction
)arg2
);
3262 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__OtkFocusWidget
, 1);
3269 static PyObject
*_wrap_delete_OtkFocusWidget(PyObject
*self
, PyObject
*args
) {
3270 PyObject
*resultobj
;
3271 otk::OtkFocusWidget
*arg1
= (otk::OtkFocusWidget
*) 0 ;
3272 PyObject
* obj0
= 0 ;
3274 if(!PyArg_ParseTuple(args
,(char *)"O:delete_OtkFocusWidget",&obj0
)) goto fail
;
3275 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkFocusWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3278 Py_INCREF(Py_None
); resultobj
= Py_None
;
3285 static PyObject
*_wrap_OtkFocusWidget_focus(PyObject
*self
, PyObject
*args
) {
3286 PyObject
*resultobj
;
3287 otk::OtkFocusWidget
*arg1
= (otk::OtkFocusWidget
*) 0 ;
3288 PyObject
* obj0
= 0 ;
3290 if(!PyArg_ParseTuple(args
,(char *)"O:OtkFocusWidget_focus",&obj0
)) goto fail
;
3291 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkFocusWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3294 Py_INCREF(Py_None
); resultobj
= Py_None
;
3301 static PyObject
*_wrap_OtkFocusWidget_unfocus(PyObject
*self
, PyObject
*args
) {
3302 PyObject
*resultobj
;
3303 otk::OtkFocusWidget
*arg1
= (otk::OtkFocusWidget
*) 0 ;
3304 PyObject
* obj0
= 0 ;
3306 if(!PyArg_ParseTuple(args
,(char *)"O:OtkFocusWidget_unfocus",&obj0
)) goto fail
;
3307 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkFocusWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3310 Py_INCREF(Py_None
); resultobj
= Py_None
;
3317 static PyObject
*_wrap_OtkFocusWidget_setTexture(PyObject
*self
, PyObject
*args
) {
3318 PyObject
*resultobj
;
3319 otk::OtkFocusWidget
*arg1
= (otk::OtkFocusWidget
*) 0 ;
3320 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
3321 PyObject
* obj0
= 0 ;
3322 PyObject
* obj1
= 0 ;
3324 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkFocusWidget_setTexture",&obj0
,&obj1
)) goto fail
;
3325 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkFocusWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3326 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3327 (arg1
)->setTexture(arg2
);
3329 Py_INCREF(Py_None
); resultobj
= Py_None
;
3336 static PyObject
*_wrap_OtkFocusWidget_setBorderColor(PyObject
*self
, PyObject
*args
) {
3337 PyObject
*resultobj
;
3338 otk::OtkFocusWidget
*arg1
= (otk::OtkFocusWidget
*) 0 ;
3339 otk::BColor
*arg2
= (otk::BColor
*) 0 ;
3340 PyObject
* obj0
= 0 ;
3341 PyObject
* obj1
= 0 ;
3343 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkFocusWidget_setBorderColor",&obj0
,&obj1
)) goto fail
;
3344 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkFocusWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3345 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3346 (arg1
)->setBorderColor((otk::BColor
const *)arg2
);
3348 Py_INCREF(Py_None
); resultobj
= Py_None
;
3355 static PyObject
*_wrap_OtkFocusWidget_setUnfocusTexture(PyObject
*self
, PyObject
*args
) {
3356 PyObject
*resultobj
;
3357 otk::OtkFocusWidget
*arg1
= (otk::OtkFocusWidget
*) 0 ;
3358 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
3359 PyObject
* obj0
= 0 ;
3360 PyObject
* obj1
= 0 ;
3362 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkFocusWidget_setUnfocusTexture",&obj0
,&obj1
)) goto fail
;
3363 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkFocusWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3364 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3365 (arg1
)->setUnfocusTexture(arg2
);
3367 Py_INCREF(Py_None
); resultobj
= Py_None
;
3374 static PyObject
*_wrap_OtkFocusWidget_getUnfocusTexture(PyObject
*self
, PyObject
*args
) {
3375 PyObject
*resultobj
;
3376 otk::OtkFocusWidget
*arg1
= (otk::OtkFocusWidget
*) 0 ;
3377 otk::BTexture
*result
;
3378 PyObject
* obj0
= 0 ;
3380 if(!PyArg_ParseTuple(args
,(char *)"O:OtkFocusWidget_getUnfocusTexture",&obj0
)) goto fail
;
3381 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkFocusWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3382 result
= (otk::BTexture
*)((otk::OtkFocusWidget
const *)arg1
)->getUnfocusTexture();
3384 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
3391 static PyObject
*_wrap_OtkFocusWidget_setUnfocusBorderColor(PyObject
*self
, PyObject
*args
) {
3392 PyObject
*resultobj
;
3393 otk::OtkFocusWidget
*arg1
= (otk::OtkFocusWidget
*) 0 ;
3394 otk::BColor
*arg2
= (otk::BColor
*) 0 ;
3395 PyObject
* obj0
= 0 ;
3396 PyObject
* obj1
= 0 ;
3398 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkFocusWidget_setUnfocusBorderColor",&obj0
,&obj1
)) goto fail
;
3399 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkFocusWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3400 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3401 (arg1
)->setUnfocusBorderColor((otk::BColor
const *)arg2
);
3403 Py_INCREF(Py_None
); resultobj
= Py_None
;
3410 static PyObject
*_wrap_OtkFocusWidget_getUnfocusBorderColor(PyObject
*self
, PyObject
*args
) {
3411 PyObject
*resultobj
;
3412 otk::OtkFocusWidget
*arg1
= (otk::OtkFocusWidget
*) 0 ;
3413 otk::BColor
*result
;
3414 PyObject
* obj0
= 0 ;
3416 if(!PyArg_ParseTuple(args
,(char *)"O:OtkFocusWidget_getUnfocusBorderColor",&obj0
)) goto fail
;
3417 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkFocusWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3418 result
= (otk::BColor
*)((otk::OtkFocusWidget
const *)arg1
)->getUnfocusBorderColor();
3420 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
3427 static PyObject
*_wrap_OtkFocusWidget_isFocused(PyObject
*self
, PyObject
*args
) {
3428 PyObject
*resultobj
;
3429 otk::OtkFocusWidget
*arg1
= (otk::OtkFocusWidget
*) 0 ;
3431 PyObject
* obj0
= 0 ;
3433 if(!PyArg_ParseTuple(args
,(char *)"O:OtkFocusWidget_isFocused",&obj0
)) goto fail
;
3434 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkFocusWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3435 result
= (bool)((otk::OtkFocusWidget
const *)arg1
)->isFocused();
3437 resultobj
= PyInt_FromLong((long)result
);
3444 static PyObject
*_wrap_OtkFocusWidget_isUnfocused(PyObject
*self
, PyObject
*args
) {
3445 PyObject
*resultobj
;
3446 otk::OtkFocusWidget
*arg1
= (otk::OtkFocusWidget
*) 0 ;
3448 PyObject
* obj0
= 0 ;
3450 if(!PyArg_ParseTuple(args
,(char *)"O:OtkFocusWidget_isUnfocused",&obj0
)) goto fail
;
3451 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkFocusWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3452 result
= (bool)((otk::OtkFocusWidget
const *)arg1
)->isUnfocused();
3454 resultobj
= PyInt_FromLong((long)result
);
3461 static PyObject
* OtkFocusWidget_swigregister(PyObject
*self
, PyObject
*args
) {
3463 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
3464 SWIG_TypeClientData(SWIGTYPE_p_otk__OtkFocusWidget
, obj
);
3466 return Py_BuildValue((char *)"");
3468 static PyObject
*_wrap_new_OtkFocusLabel(PyObject
*self
, PyObject
*args
) {
3469 PyObject
*resultobj
;
3470 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
3471 otk::OtkFocusLabel
*result
;
3472 PyObject
* obj0
= 0 ;
3474 if(!PyArg_ParseTuple(args
,(char *)"O:new_OtkFocusLabel",&obj0
)) goto fail
;
3475 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3476 result
= (otk::OtkFocusLabel
*)new otk::OtkFocusLabel(arg1
);
3478 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__OtkFocusLabel
, 1);
3485 static PyObject
*_wrap_delete_OtkFocusLabel(PyObject
*self
, PyObject
*args
) {
3486 PyObject
*resultobj
;
3487 otk::OtkFocusLabel
*arg1
= (otk::OtkFocusLabel
*) 0 ;
3488 PyObject
* obj0
= 0 ;
3490 if(!PyArg_ParseTuple(args
,(char *)"O:delete_OtkFocusLabel",&obj0
)) goto fail
;
3491 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkFocusLabel
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3494 Py_INCREF(Py_None
); resultobj
= Py_None
;
3501 static PyObject
*_wrap_OtkFocusLabel_getText(PyObject
*self
, PyObject
*args
) {
3502 PyObject
*resultobj
;
3503 otk::OtkFocusLabel
*arg1
= (otk::OtkFocusLabel
*) 0 ;
3504 std::string
*result
;
3505 PyObject
* obj0
= 0 ;
3507 if(!PyArg_ParseTuple(args
,(char *)"O:OtkFocusLabel_getText",&obj0
)) goto fail
;
3508 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkFocusLabel
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3510 std::string
const &_result_ref
= ((otk::OtkFocusLabel
const *)arg1
)->getText();
3511 result
= (std::string
*) &_result_ref
;
3515 resultobj
= PyString_FromString(result
->c_str());
3523 static PyObject
*_wrap_OtkFocusLabel_setText(PyObject
*self
, PyObject
*args
) {
3524 PyObject
*resultobj
;
3525 otk::OtkFocusLabel
*arg1
= (otk::OtkFocusLabel
*) 0 ;
3526 std::string
*arg2
= 0 ;
3528 PyObject
* obj0
= 0 ;
3529 PyObject
* obj1
= 0 ;
3531 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkFocusLabel_setText",&obj0
,&obj1
)) goto fail
;
3532 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkFocusLabel
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3534 if (PyString_Check(obj1
)) {
3535 temp2
= std::string(PyString_AsString(obj1
));
3538 SWIG_exception(SWIG_TypeError
, "string expected");
3541 (arg1
)->setText((std::string
const &)*arg2
);
3543 Py_INCREF(Py_None
); resultobj
= Py_None
;
3550 static PyObject
*_wrap_OtkFocusLabel_update(PyObject
*self
, PyObject
*args
) {
3551 PyObject
*resultobj
;
3552 otk::OtkFocusLabel
*arg1
= (otk::OtkFocusLabel
*) 0 ;
3553 PyObject
* obj0
= 0 ;
3555 if(!PyArg_ParseTuple(args
,(char *)"O:OtkFocusLabel_update",&obj0
)) goto fail
;
3556 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkFocusLabel
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3559 Py_INCREF(Py_None
); resultobj
= Py_None
;
3566 static PyObject
*_wrap_OtkFocusLabel_setStyle(PyObject
*self
, PyObject
*args
) {
3567 PyObject
*resultobj
;
3568 otk::OtkFocusLabel
*arg1
= (otk::OtkFocusLabel
*) 0 ;
3569 otk::Style
*arg2
= (otk::Style
*) 0 ;
3570 PyObject
* obj0
= 0 ;
3571 PyObject
* obj1
= 0 ;
3573 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkFocusLabel_setStyle",&obj0
,&obj1
)) goto fail
;
3574 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkFocusLabel
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3575 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3576 (arg1
)->setStyle(arg2
);
3578 Py_INCREF(Py_None
); resultobj
= Py_None
;
3585 static PyObject
* OtkFocusLabel_swigregister(PyObject
*self
, PyObject
*args
) {
3587 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
3588 SWIG_TypeClientData(SWIGTYPE_p_otk__OtkFocusLabel
, obj
);
3590 return Py_BuildValue((char *)"");
3592 static PyObject
*_wrap_new_OtkAppWidget(PyObject
*self
, PyObject
*args
) {
3593 PyObject
*resultobj
;
3594 otk::OtkApplication
*arg1
= (otk::OtkApplication
*) 0 ;
3595 int arg2
= (int) otk::OtkWidget::Horizontal
;
3596 Cursor arg3
= (Cursor
) 0 ;
3597 int arg4
= (int) 1 ;
3598 otk::OtkAppWidget
*result
;
3600 PyObject
* obj0
= 0 ;
3601 PyObject
* obj2
= 0 ;
3603 if(!PyArg_ParseTuple(args
,(char *)"O|iOi:new_OtkAppWidget",&obj0
,&arg2
,&obj2
,&arg4
)) goto fail
;
3604 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkApplication
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3606 if ((SWIG_ConvertPtr(obj2
,(void **) &argp3
, SWIGTYPE_p_Cursor
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
3609 result
= (otk::OtkAppWidget
*)new otk::OtkAppWidget(arg1
,(otk::OtkWidget::Direction
)arg2
,arg3
,arg4
);
3611 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__OtkAppWidget
, 1);
3618 static PyObject
*_wrap_delete_OtkAppWidget(PyObject
*self
, PyObject
*args
) {
3619 PyObject
*resultobj
;
3620 otk::OtkAppWidget
*arg1
= (otk::OtkAppWidget
*) 0 ;
3621 PyObject
* obj0
= 0 ;
3623 if(!PyArg_ParseTuple(args
,(char *)"O:delete_OtkAppWidget",&obj0
)) goto fail
;
3624 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkAppWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3627 Py_INCREF(Py_None
); resultobj
= Py_None
;
3634 static PyObject
*_wrap_OtkAppWidget_show(PyObject
*self
, PyObject
*args
) {
3635 PyObject
*resultobj
;
3636 otk::OtkAppWidget
*arg1
= (otk::OtkAppWidget
*) 0 ;
3637 PyObject
* obj0
= 0 ;
3639 if(!PyArg_ParseTuple(args
,(char *)"O:OtkAppWidget_show",&obj0
)) goto fail
;
3640 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkAppWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3643 Py_INCREF(Py_None
); resultobj
= Py_None
;
3650 static PyObject
*_wrap_OtkAppWidget_hide(PyObject
*self
, PyObject
*args
) {
3651 PyObject
*resultobj
;
3652 otk::OtkAppWidget
*arg1
= (otk::OtkAppWidget
*) 0 ;
3653 PyObject
* obj0
= 0 ;
3655 if(!PyArg_ParseTuple(args
,(char *)"O:OtkAppWidget_hide",&obj0
)) goto fail
;
3656 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkAppWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3659 Py_INCREF(Py_None
); resultobj
= Py_None
;
3666 static PyObject
*_wrap_OtkAppWidget_clientMessageHandler(PyObject
*self
, PyObject
*args
) {
3667 PyObject
*resultobj
;
3668 otk::OtkAppWidget
*arg1
= (otk::OtkAppWidget
*) 0 ;
3669 XClientMessageEvent
*arg2
= 0 ;
3670 PyObject
* obj0
= 0 ;
3671 PyObject
* obj1
= 0 ;
3673 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkAppWidget_clientMessageHandler",&obj0
,&obj1
)) goto fail
;
3674 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkAppWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3675 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XClientMessageEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3677 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
3679 (arg1
)->clientMessageHandler((XClientMessageEvent
const &)*arg2
);
3681 Py_INCREF(Py_None
); resultobj
= Py_None
;
3688 static PyObject
* OtkAppWidget_swigregister(PyObject
*self
, PyObject
*args
) {
3690 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
3691 SWIG_TypeClientData(SWIGTYPE_p_otk__OtkAppWidget
, obj
);
3693 return Py_BuildValue((char *)"");
3695 static PyObject
*_wrap_new_OtkApplication(PyObject
*self
, PyObject
*args
) {
3696 PyObject
*resultobj
;
3698 char **arg2
= (char **) 0 ;
3699 otk::OtkApplication
*result
;
3700 PyObject
* obj1
= 0 ;
3702 if(!PyArg_ParseTuple(args
,(char *)"iO:new_OtkApplication",&arg1
,&obj1
)) goto fail
;
3703 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_p_char
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3704 result
= (otk::OtkApplication
*)new otk::OtkApplication(arg1
,arg2
);
3706 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__OtkApplication
, 1);
3713 static PyObject
*_wrap_delete_OtkApplication(PyObject
*self
, PyObject
*args
) {
3714 PyObject
*resultobj
;
3715 otk::OtkApplication
*arg1
= (otk::OtkApplication
*) 0 ;
3716 PyObject
* obj0
= 0 ;
3718 if(!PyArg_ParseTuple(args
,(char *)"O:delete_OtkApplication",&obj0
)) goto fail
;
3719 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkApplication
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3722 Py_INCREF(Py_None
); resultobj
= Py_None
;
3729 static PyObject
*_wrap_OtkApplication_run(PyObject
*self
, PyObject
*args
) {
3730 PyObject
*resultobj
;
3731 otk::OtkApplication
*arg1
= (otk::OtkApplication
*) 0 ;
3732 PyObject
* obj0
= 0 ;
3734 if(!PyArg_ParseTuple(args
,(char *)"O:OtkApplication_run",&obj0
)) goto fail
;
3735 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkApplication
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3738 Py_INCREF(Py_None
); resultobj
= Py_None
;
3745 static PyObject
*_wrap_OtkApplication_setDockable(PyObject
*self
, PyObject
*args
) {
3746 PyObject
*resultobj
;
3747 otk::OtkApplication
*arg1
= (otk::OtkApplication
*) 0 ;
3749 PyObject
* obj0
= 0 ;
3750 PyObject
* obj1
= 0 ;
3752 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkApplication_setDockable",&obj0
,&obj1
)) goto fail
;
3753 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkApplication
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3754 arg2
= (bool) PyInt_AsLong(obj1
);
3755 if (PyErr_Occurred()) SWIG_fail
;
3756 (arg1
)->setDockable(arg2
);
3758 Py_INCREF(Py_None
); resultobj
= Py_None
;
3765 static PyObject
*_wrap_OtkApplication_isDockable(PyObject
*self
, PyObject
*args
) {
3766 PyObject
*resultobj
;
3767 otk::OtkApplication
*arg1
= (otk::OtkApplication
*) 0 ;
3769 PyObject
* obj0
= 0 ;
3771 if(!PyArg_ParseTuple(args
,(char *)"O:OtkApplication_isDockable",&obj0
)) goto fail
;
3772 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkApplication
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3773 result
= (bool)((otk::OtkApplication
const *)arg1
)->isDockable();
3775 resultobj
= PyInt_FromLong((long)result
);
3782 static PyObject
*_wrap_OtkApplication_getStyle(PyObject
*self
, PyObject
*args
) {
3783 PyObject
*resultobj
;
3784 otk::OtkApplication
*arg1
= (otk::OtkApplication
*) 0 ;
3786 PyObject
* obj0
= 0 ;
3788 if(!PyArg_ParseTuple(args
,(char *)"O:OtkApplication_getStyle",&obj0
)) goto fail
;
3789 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkApplication
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3790 result
= (otk::Style
*)((otk::OtkApplication
const *)arg1
)->getStyle();
3792 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Style
, 0);
3799 static PyObject
* OtkApplication_swigregister(PyObject
*self
, PyObject
*args
) {
3801 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
3802 SWIG_TypeClientData(SWIGTYPE_p_otk__OtkApplication
, obj
);
3804 return Py_BuildValue((char *)"");
3806 static PyObject
*_wrap_new_PointerAssassin(PyObject
*self
, PyObject
*args
) {
3807 PyObject
*resultobj
;
3808 otk::PointerAssassin
*result
;
3810 if(!PyArg_ParseTuple(args
,(char *)":new_PointerAssassin")) goto fail
;
3811 result
= (otk::PointerAssassin
*)new otk::PointerAssassin();
3813 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__PointerAssassin
, 1);
3820 static PyObject
*_wrap_delete_PointerAssassin(PyObject
*self
, PyObject
*args
) {
3821 PyObject
*resultobj
;
3822 otk::PointerAssassin
*arg1
= (otk::PointerAssassin
*) 0 ;
3823 PyObject
* obj0
= 0 ;
3825 if(!PyArg_ParseTuple(args
,(char *)"O:delete_PointerAssassin",&obj0
)) goto fail
;
3826 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__PointerAssassin
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3829 Py_INCREF(Py_None
); resultobj
= Py_None
;
3836 static PyObject
* PointerAssassin_swigregister(PyObject
*self
, PyObject
*args
) {
3838 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
3839 SWIG_TypeClientData(SWIGTYPE_p_otk__PointerAssassin
, obj
);
3841 return Py_BuildValue((char *)"");
3843 static PyObject
*_wrap_new_OtkButton(PyObject
*self
, PyObject
*args
) {
3844 PyObject
*resultobj
;
3845 otk::OtkWidget
*arg1
= (otk::OtkWidget
*) 0 ;
3846 otk::OtkButton
*result
;
3847 PyObject
* obj0
= 0 ;
3849 if(!PyArg_ParseTuple(args
,(char *)"O:new_OtkButton",&obj0
)) goto fail
;
3850 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkWidget
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3851 result
= (otk::OtkButton
*)new otk::OtkButton(arg1
);
3853 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__OtkButton
, 1);
3860 static PyObject
*_wrap_delete_OtkButton(PyObject
*self
, PyObject
*args
) {
3861 PyObject
*resultobj
;
3862 otk::OtkButton
*arg1
= (otk::OtkButton
*) 0 ;
3863 PyObject
* obj0
= 0 ;
3865 if(!PyArg_ParseTuple(args
,(char *)"O:delete_OtkButton",&obj0
)) goto fail
;
3866 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkButton
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3869 Py_INCREF(Py_None
); resultobj
= Py_None
;
3876 static PyObject
*_wrap_OtkButton_getPressedFocusTexture(PyObject
*self
, PyObject
*args
) {
3877 PyObject
*resultobj
;
3878 otk::OtkButton
*arg1
= (otk::OtkButton
*) 0 ;
3879 otk::BTexture
*result
;
3880 PyObject
* obj0
= 0 ;
3882 if(!PyArg_ParseTuple(args
,(char *)"O:OtkButton_getPressedFocusTexture",&obj0
)) goto fail
;
3883 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkButton
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3884 result
= (otk::BTexture
*)((otk::OtkButton
const *)arg1
)->getPressedFocusTexture();
3886 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
3893 static PyObject
*_wrap_OtkButton_setPressedFocusTexture(PyObject
*self
, PyObject
*args
) {
3894 PyObject
*resultobj
;
3895 otk::OtkButton
*arg1
= (otk::OtkButton
*) 0 ;
3896 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
3897 PyObject
* obj0
= 0 ;
3898 PyObject
* obj1
= 0 ;
3900 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkButton_setPressedFocusTexture",&obj0
,&obj1
)) goto fail
;
3901 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkButton
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3902 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3903 (arg1
)->setPressedFocusTexture(arg2
);
3905 Py_INCREF(Py_None
); resultobj
= Py_None
;
3912 static PyObject
*_wrap_OtkButton_getPressedUnfocusTexture(PyObject
*self
, PyObject
*args
) {
3913 PyObject
*resultobj
;
3914 otk::OtkButton
*arg1
= (otk::OtkButton
*) 0 ;
3915 otk::BTexture
*result
;
3916 PyObject
* obj0
= 0 ;
3918 if(!PyArg_ParseTuple(args
,(char *)"O:OtkButton_getPressedUnfocusTexture",&obj0
)) goto fail
;
3919 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkButton
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3920 result
= (otk::BTexture
*)((otk::OtkButton
const *)arg1
)->getPressedUnfocusTexture();
3922 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
3929 static PyObject
*_wrap_OtkButton_setPressedUnfocusTexture(PyObject
*self
, PyObject
*args
) {
3930 PyObject
*resultobj
;
3931 otk::OtkButton
*arg1
= (otk::OtkButton
*) 0 ;
3932 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
3933 PyObject
* obj0
= 0 ;
3934 PyObject
* obj1
= 0 ;
3936 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkButton_setPressedUnfocusTexture",&obj0
,&obj1
)) goto fail
;
3937 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkButton
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3938 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3939 (arg1
)->setPressedUnfocusTexture(arg2
);
3941 Py_INCREF(Py_None
); resultobj
= Py_None
;
3948 static PyObject
*_wrap_OtkButton_setTexture(PyObject
*self
, PyObject
*args
) {
3949 PyObject
*resultobj
;
3950 otk::OtkButton
*arg1
= (otk::OtkButton
*) 0 ;
3951 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
3952 PyObject
* obj0
= 0 ;
3953 PyObject
* obj1
= 0 ;
3955 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkButton_setTexture",&obj0
,&obj1
)) goto fail
;
3956 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkButton
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3957 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3958 (arg1
)->setTexture(arg2
);
3960 Py_INCREF(Py_None
); resultobj
= Py_None
;
3967 static PyObject
*_wrap_OtkButton_setUnfocusTexture(PyObject
*self
, PyObject
*args
) {
3968 PyObject
*resultobj
;
3969 otk::OtkButton
*arg1
= (otk::OtkButton
*) 0 ;
3970 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
3971 PyObject
* obj0
= 0 ;
3972 PyObject
* obj1
= 0 ;
3974 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkButton_setUnfocusTexture",&obj0
,&obj1
)) goto fail
;
3975 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkButton
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3976 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3977 (arg1
)->setUnfocusTexture(arg2
);
3979 Py_INCREF(Py_None
); resultobj
= Py_None
;
3986 static PyObject
*_wrap_OtkButton_isPressed(PyObject
*self
, PyObject
*args
) {
3987 PyObject
*resultobj
;
3988 otk::OtkButton
*arg1
= (otk::OtkButton
*) 0 ;
3990 PyObject
* obj0
= 0 ;
3992 if(!PyArg_ParseTuple(args
,(char *)"O:OtkButton_isPressed",&obj0
)) goto fail
;
3993 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkButton
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3994 result
= (bool)((otk::OtkButton
const *)arg1
)->isPressed();
3996 resultobj
= PyInt_FromLong((long)result
);
4003 static PyObject
*_wrap_OtkButton_press(PyObject
*self
, PyObject
*args
) {
4004 PyObject
*resultobj
;
4005 otk::OtkButton
*arg1
= (otk::OtkButton
*) 0 ;
4007 PyObject
* obj0
= 0 ;
4008 PyObject
* obj1
= 0 ;
4010 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkButton_press",&obj0
,&obj1
)) goto fail
;
4011 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkButton
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4012 arg2
= (unsigned int) PyInt_AsLong(obj1
);
4013 if (PyErr_Occurred()) SWIG_fail
;
4014 (arg1
)->press(arg2
);
4016 Py_INCREF(Py_None
); resultobj
= Py_None
;
4023 static PyObject
*_wrap_OtkButton_release(PyObject
*self
, PyObject
*args
) {
4024 PyObject
*resultobj
;
4025 otk::OtkButton
*arg1
= (otk::OtkButton
*) 0 ;
4027 PyObject
* obj0
= 0 ;
4028 PyObject
* obj1
= 0 ;
4030 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkButton_release",&obj0
,&obj1
)) goto fail
;
4031 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkButton
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4032 arg2
= (unsigned int) PyInt_AsLong(obj1
);
4033 if (PyErr_Occurred()) SWIG_fail
;
4034 (arg1
)->release(arg2
);
4036 Py_INCREF(Py_None
); resultobj
= Py_None
;
4043 static PyObject
*_wrap_OtkButton_buttonPressHandler(PyObject
*self
, PyObject
*args
) {
4044 PyObject
*resultobj
;
4045 otk::OtkButton
*arg1
= (otk::OtkButton
*) 0 ;
4046 XButtonEvent
*arg2
= 0 ;
4047 PyObject
* obj0
= 0 ;
4048 PyObject
* obj1
= 0 ;
4050 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkButton_buttonPressHandler",&obj0
,&obj1
)) goto fail
;
4051 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkButton
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4052 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XButtonEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4054 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
4056 (arg1
)->buttonPressHandler((XButtonEvent
const &)*arg2
);
4058 Py_INCREF(Py_None
); resultobj
= Py_None
;
4065 static PyObject
*_wrap_OtkButton_buttonReleaseHandler(PyObject
*self
, PyObject
*args
) {
4066 PyObject
*resultobj
;
4067 otk::OtkButton
*arg1
= (otk::OtkButton
*) 0 ;
4068 XButtonEvent
*arg2
= 0 ;
4069 PyObject
* obj0
= 0 ;
4070 PyObject
* obj1
= 0 ;
4072 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkButton_buttonReleaseHandler",&obj0
,&obj1
)) goto fail
;
4073 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkButton
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4074 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XButtonEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4076 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
4078 (arg1
)->buttonReleaseHandler((XButtonEvent
const &)*arg2
);
4080 Py_INCREF(Py_None
); resultobj
= Py_None
;
4087 static PyObject
*_wrap_OtkButton_setStyle(PyObject
*self
, PyObject
*args
) {
4088 PyObject
*resultobj
;
4089 otk::OtkButton
*arg1
= (otk::OtkButton
*) 0 ;
4090 otk::Style
*arg2
= (otk::Style
*) 0 ;
4091 PyObject
* obj0
= 0 ;
4092 PyObject
* obj1
= 0 ;
4094 if(!PyArg_ParseTuple(args
,(char *)"OO:OtkButton_setStyle",&obj0
,&obj1
)) goto fail
;
4095 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OtkButton
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4096 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4097 (arg1
)->setStyle(arg2
);
4099 Py_INCREF(Py_None
); resultobj
= Py_None
;
4106 static PyObject
* OtkButton_swigregister(PyObject
*self
, PyObject
*args
) {
4108 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
4109 SWIG_TypeClientData(SWIGTYPE_p_otk__OtkButton
, obj
);
4111 return Py_BuildValue((char *)"");
4113 static PyObject
*_wrap_new_BColor__SWIG_0(PyObject
*self
, PyObject
*args
) {
4114 PyObject
*resultobj
;
4115 unsigned int arg1
= (unsigned int) ~(0u) ;
4116 otk::BColor
*result
;
4117 PyObject
* obj0
= 0 ;
4119 if(!PyArg_ParseTuple(args
,(char *)"|O:new_BColor",&obj0
)) goto fail
;
4121 arg1
= (unsigned int) PyInt_AsLong(obj0
);
4122 if (PyErr_Occurred()) SWIG_fail
;
4124 result
= (otk::BColor
*)new otk::BColor(arg1
);
4126 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 1);
4133 static PyObject
*_wrap_new_BColor__SWIG_1(PyObject
*self
, PyObject
*args
) {
4134 PyObject
*resultobj
;
4138 unsigned int arg4
= (unsigned int) ~(0u) ;
4139 otk::BColor
*result
;
4140 PyObject
* obj3
= 0 ;
4142 if(!PyArg_ParseTuple(args
,(char *)"iii|O:new_BColor",&arg1
,&arg2
,&arg3
,&obj3
)) goto fail
;
4144 arg4
= (unsigned int) PyInt_AsLong(obj3
);
4145 if (PyErr_Occurred()) SWIG_fail
;
4147 result
= (otk::BColor
*)new otk::BColor(arg1
,arg2
,arg3
,arg4
);
4149 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 1);
4156 static PyObject
*_wrap_new_BColor__SWIG_2(PyObject
*self
, PyObject
*args
) {
4157 PyObject
*resultobj
;
4158 std::string
*arg1
= 0 ;
4159 unsigned int arg2
= (unsigned int) ~(0u) ;
4160 otk::BColor
*result
;
4162 PyObject
* obj0
= 0 ;
4163 PyObject
* obj1
= 0 ;
4165 if(!PyArg_ParseTuple(args
,(char *)"O|O:new_BColor",&obj0
,&obj1
)) goto fail
;
4167 if (PyString_Check(obj0
)) {
4168 temp1
= std::string(PyString_AsString(obj0
));
4171 SWIG_exception(SWIG_TypeError
, "string expected");
4175 arg2
= (unsigned int) PyInt_AsLong(obj1
);
4176 if (PyErr_Occurred()) SWIG_fail
;
4178 result
= (otk::BColor
*)new otk::BColor((std::string
const &)*arg1
,arg2
);
4180 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 1);
4187 static PyObject
*_wrap_new_BColor(PyObject
*self
, PyObject
*args
) {
4192 argc
= PyObject_Length(args
);
4193 for (ii
= 0; (ii
< argc
) && (ii
< 4); ii
++) {
4194 argv
[ii
] = PyTuple_GetItem(args
,ii
);
4196 if ((argc
>= 0) && (argc
<= 1)) {
4199 return _wrap_new_BColor__SWIG_0(self
,args
);
4202 _v
= (PyInt_Check(argv
[0]) || PyLong_Check(argv
[0])) ? 1 : 0;
4205 return _wrap_new_BColor__SWIG_0(self
,args
);
4208 if ((argc
>= 1) && (argc
<= 2)) {
4211 _v
= PyString_Check(argv
[0]) ? 1 : 0;
4215 return _wrap_new_BColor__SWIG_2(self
,args
);
4218 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
4221 return _wrap_new_BColor__SWIG_2(self
,args
);
4225 if ((argc
>= 3) && (argc
<= 4)) {
4228 _v
= (PyInt_Check(argv
[0]) || PyLong_Check(argv
[0])) ? 1 : 0;
4232 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
4236 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
4240 return _wrap_new_BColor__SWIG_1(self
,args
);
4243 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
4246 return _wrap_new_BColor__SWIG_1(self
,args
);
4253 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'new_BColor'");
4258 static PyObject
*_wrap_delete_BColor(PyObject
*self
, PyObject
*args
) {
4259 PyObject
*resultobj
;
4260 otk::BColor
*arg1
= (otk::BColor
*) 0 ;
4261 PyObject
* obj0
= 0 ;
4263 if(!PyArg_ParseTuple(args
,(char *)"O:delete_BColor",&obj0
)) goto fail
;
4264 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4267 Py_INCREF(Py_None
); resultobj
= Py_None
;
4274 static PyObject
*_wrap_BColor_name(PyObject
*self
, PyObject
*args
) {
4275 PyObject
*resultobj
;
4276 otk::BColor
*arg1
= (otk::BColor
*) 0 ;
4277 std::string
*result
;
4278 PyObject
* obj0
= 0 ;
4280 if(!PyArg_ParseTuple(args
,(char *)"O:BColor_name",&obj0
)) goto fail
;
4281 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4283 std::string
const &_result_ref
= ((otk::BColor
const *)arg1
)->name();
4284 result
= (std::string
*) &_result_ref
;
4288 resultobj
= PyString_FromString(result
->c_str());
4296 static PyObject
*_wrap_BColor_red(PyObject
*self
, PyObject
*args
) {
4297 PyObject
*resultobj
;
4298 otk::BColor
*arg1
= (otk::BColor
*) 0 ;
4300 PyObject
* obj0
= 0 ;
4302 if(!PyArg_ParseTuple(args
,(char *)"O:BColor_red",&obj0
)) goto fail
;
4303 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4304 result
= (int)((otk::BColor
const *)arg1
)->red();
4306 resultobj
= PyInt_FromLong((long)result
);
4313 static PyObject
*_wrap_BColor_green(PyObject
*self
, PyObject
*args
) {
4314 PyObject
*resultobj
;
4315 otk::BColor
*arg1
= (otk::BColor
*) 0 ;
4317 PyObject
* obj0
= 0 ;
4319 if(!PyArg_ParseTuple(args
,(char *)"O:BColor_green",&obj0
)) goto fail
;
4320 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4321 result
= (int)((otk::BColor
const *)arg1
)->green();
4323 resultobj
= PyInt_FromLong((long)result
);
4330 static PyObject
*_wrap_BColor_blue(PyObject
*self
, PyObject
*args
) {
4331 PyObject
*resultobj
;
4332 otk::BColor
*arg1
= (otk::BColor
*) 0 ;
4334 PyObject
* obj0
= 0 ;
4336 if(!PyArg_ParseTuple(args
,(char *)"O:BColor_blue",&obj0
)) goto fail
;
4337 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4338 result
= (int)((otk::BColor
const *)arg1
)->blue();
4340 resultobj
= PyInt_FromLong((long)result
);
4347 static PyObject
*_wrap_BColor_setRGB(PyObject
*self
, PyObject
*args
) {
4348 PyObject
*resultobj
;
4349 otk::BColor
*arg1
= (otk::BColor
*) 0 ;
4353 PyObject
* obj0
= 0 ;
4355 if(!PyArg_ParseTuple(args
,(char *)"Oiii:BColor_setRGB",&obj0
,&arg2
,&arg3
,&arg4
)) goto fail
;
4356 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4357 (arg1
)->setRGB(arg2
,arg3
,arg4
);
4359 Py_INCREF(Py_None
); resultobj
= Py_None
;
4366 static PyObject
*_wrap_BColor_screen(PyObject
*self
, PyObject
*args
) {
4367 PyObject
*resultobj
;
4368 otk::BColor
*arg1
= (otk::BColor
*) 0 ;
4369 unsigned int result
;
4370 PyObject
* obj0
= 0 ;
4372 if(!PyArg_ParseTuple(args
,(char *)"O:BColor_screen",&obj0
)) goto fail
;
4373 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4374 result
= (unsigned int)((otk::BColor
const *)arg1
)->screen();
4376 resultobj
= PyInt_FromLong((long)result
);
4383 static PyObject
*_wrap_BColor_setScreen(PyObject
*self
, PyObject
*args
) {
4384 PyObject
*resultobj
;
4385 otk::BColor
*arg1
= (otk::BColor
*) 0 ;
4386 unsigned int arg2
= (unsigned int) ~(0u) ;
4387 PyObject
* obj0
= 0 ;
4388 PyObject
* obj1
= 0 ;
4390 if(!PyArg_ParseTuple(args
,(char *)"O|O:BColor_setScreen",&obj0
,&obj1
)) goto fail
;
4391 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4393 arg2
= (unsigned int) PyInt_AsLong(obj1
);
4394 if (PyErr_Occurred()) SWIG_fail
;
4396 (arg1
)->setScreen(arg2
);
4398 Py_INCREF(Py_None
); resultobj
= Py_None
;
4405 static PyObject
*_wrap_BColor_isAllocated(PyObject
*self
, PyObject
*args
) {
4406 PyObject
*resultobj
;
4407 otk::BColor
*arg1
= (otk::BColor
*) 0 ;
4409 PyObject
* obj0
= 0 ;
4411 if(!PyArg_ParseTuple(args
,(char *)"O:BColor_isAllocated",&obj0
)) goto fail
;
4412 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4413 result
= (bool)((otk::BColor
const *)arg1
)->isAllocated();
4415 resultobj
= PyInt_FromLong((long)result
);
4422 static PyObject
*_wrap_BColor_isValid(PyObject
*self
, PyObject
*args
) {
4423 PyObject
*resultobj
;
4424 otk::BColor
*arg1
= (otk::BColor
*) 0 ;
4426 PyObject
* obj0
= 0 ;
4428 if(!PyArg_ParseTuple(args
,(char *)"O:BColor_isValid",&obj0
)) goto fail
;
4429 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4430 result
= (bool)((otk::BColor
const *)arg1
)->isValid();
4432 resultobj
= PyInt_FromLong((long)result
);
4439 static PyObject
*_wrap_BColor_pixel(PyObject
*self
, PyObject
*args
) {
4440 PyObject
*resultobj
;
4441 otk::BColor
*arg1
= (otk::BColor
*) 0 ;
4442 unsigned long result
;
4443 PyObject
* obj0
= 0 ;
4445 if(!PyArg_ParseTuple(args
,(char *)"O:BColor_pixel",&obj0
)) goto fail
;
4446 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4447 result
= (unsigned long)((otk::BColor
const *)arg1
)->pixel();
4449 resultobj
= PyInt_FromLong((long)result
);
4456 static PyObject
*_wrap_BColor_equals(PyObject
*self
, PyObject
*args
) {
4457 PyObject
*resultobj
;
4458 otk::BColor
*arg1
= (otk::BColor
*) 0 ;
4459 otk::BColor
*arg2
= 0 ;
4461 PyObject
* obj0
= 0 ;
4462 PyObject
* obj1
= 0 ;
4464 if(!PyArg_ParseTuple(args
,(char *)"OO:BColor_equals",&obj0
,&obj1
)) goto fail
;
4465 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4466 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4468 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
4470 result
= (bool)((otk::BColor
const *)arg1
)->operator ==((otk::BColor
const &)*arg2
);
4472 resultobj
= PyInt_FromLong((long)result
);
4479 static PyObject
*_wrap_BColor_cleanupColorCache(PyObject
*self
, PyObject
*args
) {
4480 PyObject
*resultobj
;
4482 if(!PyArg_ParseTuple(args
,(char *)":BColor_cleanupColorCache")) goto fail
;
4483 otk::BColor::cleanupColorCache();
4485 Py_INCREF(Py_None
); resultobj
= Py_None
;
4492 static PyObject
* BColor_swigregister(PyObject
*self
, PyObject
*args
) {
4494 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
4495 SWIG_TypeClientData(SWIGTYPE_p_otk__BColor
, obj
);
4497 return Py_BuildValue((char *)"");
4499 static PyObject
*_wrap_new_Configuration__SWIG_0(PyObject
*self
, PyObject
*args
) {
4500 PyObject
*resultobj
;
4501 std::string
*arg1
= 0 ;
4502 bool arg2
= (bool) True
;
4503 otk::Configuration
*result
;
4505 PyObject
* obj0
= 0 ;
4506 PyObject
* obj1
= 0 ;
4508 if(!PyArg_ParseTuple(args
,(char *)"O|O:new_Configuration",&obj0
,&obj1
)) goto fail
;
4510 if (PyString_Check(obj0
)) {
4511 temp1
= std::string(PyString_AsString(obj0
));
4514 SWIG_exception(SWIG_TypeError
, "string expected");
4518 arg2
= (bool) PyInt_AsLong(obj1
);
4519 if (PyErr_Occurred()) SWIG_fail
;
4521 result
= (otk::Configuration
*)new otk::Configuration((std::string
const &)*arg1
,arg2
);
4523 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Configuration
, 1);
4530 static PyObject
*_wrap_new_Configuration__SWIG_1(PyObject
*self
, PyObject
*args
) {
4531 PyObject
*resultobj
;
4532 bool arg1
= (bool) True
;
4533 otk::Configuration
*result
;
4534 PyObject
* obj0
= 0 ;
4536 if(!PyArg_ParseTuple(args
,(char *)"|O:new_Configuration",&obj0
)) goto fail
;
4538 arg1
= (bool) PyInt_AsLong(obj0
);
4539 if (PyErr_Occurred()) SWIG_fail
;
4541 result
= (otk::Configuration
*)new otk::Configuration(arg1
);
4543 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Configuration
, 1);
4550 static PyObject
*_wrap_new_Configuration(PyObject
*self
, PyObject
*args
) {
4555 argc
= PyObject_Length(args
);
4556 for (ii
= 0; (ii
< argc
) && (ii
< 2); ii
++) {
4557 argv
[ii
] = PyTuple_GetItem(args
,ii
);
4559 if ((argc
>= 0) && (argc
<= 1)) {
4562 return _wrap_new_Configuration__SWIG_1(self
,args
);
4565 _v
= (PyInt_Check(argv
[0]) || PyLong_Check(argv
[0])) ? 1 : 0;
4568 return _wrap_new_Configuration__SWIG_1(self
,args
);
4571 if ((argc
>= 1) && (argc
<= 2)) {
4574 _v
= PyString_Check(argv
[0]) ? 1 : 0;
4578 return _wrap_new_Configuration__SWIG_0(self
,args
);
4581 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
4584 return _wrap_new_Configuration__SWIG_0(self
,args
);
4589 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'new_Configuration'");
4594 static PyObject
*_wrap_delete_Configuration(PyObject
*self
, PyObject
*args
) {
4595 PyObject
*resultobj
;
4596 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4597 PyObject
* obj0
= 0 ;
4599 if(!PyArg_ParseTuple(args
,(char *)"O:delete_Configuration",&obj0
)) goto fail
;
4600 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4603 Py_INCREF(Py_None
); resultobj
= Py_None
;
4610 static PyObject
*_wrap_Configuration_file(PyObject
*self
, PyObject
*args
) {
4611 PyObject
*resultobj
;
4612 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4613 std::string
*result
;
4614 PyObject
* obj0
= 0 ;
4616 if(!PyArg_ParseTuple(args
,(char *)"O:Configuration_file",&obj0
)) goto fail
;
4617 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4619 std::string
const &_result_ref
= ((otk::Configuration
const *)arg1
)->file();
4620 result
= (std::string
*) &_result_ref
;
4624 resultobj
= PyString_FromString(result
->c_str());
4632 static PyObject
*_wrap_Configuration_setFile(PyObject
*self
, PyObject
*args
) {
4633 PyObject
*resultobj
;
4634 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4635 std::string
*arg2
= 0 ;
4637 PyObject
* obj0
= 0 ;
4638 PyObject
* obj1
= 0 ;
4640 if(!PyArg_ParseTuple(args
,(char *)"OO:Configuration_setFile",&obj0
,&obj1
)) goto fail
;
4641 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4643 if (PyString_Check(obj1
)) {
4644 temp2
= std::string(PyString_AsString(obj1
));
4647 SWIG_exception(SWIG_TypeError
, "string expected");
4650 (arg1
)->setFile((std::string
const &)*arg2
);
4652 Py_INCREF(Py_None
); resultobj
= Py_None
;
4659 static PyObject
*_wrap_Configuration_autoSave(PyObject
*self
, PyObject
*args
) {
4660 PyObject
*resultobj
;
4661 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4663 PyObject
* obj0
= 0 ;
4665 if(!PyArg_ParseTuple(args
,(char *)"O:Configuration_autoSave",&obj0
)) goto fail
;
4666 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4667 result
= (bool)((otk::Configuration
const *)arg1
)->autoSave();
4669 resultobj
= PyInt_FromLong((long)result
);
4676 static PyObject
*_wrap_Configuration_setAutoSave(PyObject
*self
, PyObject
*args
) {
4677 PyObject
*resultobj
;
4678 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4680 PyObject
* obj0
= 0 ;
4681 PyObject
* obj1
= 0 ;
4683 if(!PyArg_ParseTuple(args
,(char *)"OO:Configuration_setAutoSave",&obj0
,&obj1
)) goto fail
;
4684 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4685 arg2
= (bool) PyInt_AsLong(obj1
);
4686 if (PyErr_Occurred()) SWIG_fail
;
4687 (arg1
)->setAutoSave(arg2
);
4689 Py_INCREF(Py_None
); resultobj
= Py_None
;
4696 static PyObject
*_wrap_Configuration_isModified(PyObject
*self
, PyObject
*args
) {
4697 PyObject
*resultobj
;
4698 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4700 PyObject
* obj0
= 0 ;
4702 if(!PyArg_ParseTuple(args
,(char *)"O:Configuration_isModified",&obj0
)) goto fail
;
4703 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4704 result
= (bool)((otk::Configuration
const *)arg1
)->isModified();
4706 resultobj
= PyInt_FromLong((long)result
);
4713 static PyObject
*_wrap_Configuration_save(PyObject
*self
, PyObject
*args
) {
4714 PyObject
*resultobj
;
4715 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4716 PyObject
* obj0
= 0 ;
4718 if(!PyArg_ParseTuple(args
,(char *)"O:Configuration_save",&obj0
)) goto fail
;
4719 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4722 Py_INCREF(Py_None
); resultobj
= Py_None
;
4729 static PyObject
*_wrap_Configuration_load(PyObject
*self
, PyObject
*args
) {
4730 PyObject
*resultobj
;
4731 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4733 PyObject
* obj0
= 0 ;
4735 if(!PyArg_ParseTuple(args
,(char *)"O:Configuration_load",&obj0
)) goto fail
;
4736 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4737 result
= (bool)(arg1
)->load();
4739 resultobj
= PyInt_FromLong((long)result
);
4746 static PyObject
*_wrap_Configuration_merge(PyObject
*self
, PyObject
*args
) {
4747 PyObject
*resultobj
;
4748 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4749 std::string
*arg2
= 0 ;
4750 bool arg3
= (bool) False
;
4753 PyObject
* obj0
= 0 ;
4754 PyObject
* obj1
= 0 ;
4755 PyObject
* obj2
= 0 ;
4757 if(!PyArg_ParseTuple(args
,(char *)"OO|O:Configuration_merge",&obj0
,&obj1
,&obj2
)) goto fail
;
4758 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4760 if (PyString_Check(obj1
)) {
4761 temp2
= std::string(PyString_AsString(obj1
));
4764 SWIG_exception(SWIG_TypeError
, "string expected");
4768 arg3
= (bool) PyInt_AsLong(obj2
);
4769 if (PyErr_Occurred()) SWIG_fail
;
4771 result
= (bool)(arg1
)->merge((std::string
const &)*arg2
,arg3
);
4773 resultobj
= PyInt_FromLong((long)result
);
4780 static PyObject
*_wrap_Configuration_create(PyObject
*self
, PyObject
*args
) {
4781 PyObject
*resultobj
;
4782 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4783 PyObject
* obj0
= 0 ;
4785 if(!PyArg_ParseTuple(args
,(char *)"O:Configuration_create",&obj0
)) goto fail
;
4786 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4789 Py_INCREF(Py_None
); resultobj
= Py_None
;
4796 static PyObject
*_wrap_Configuration_setValue_bool(PyObject
*self
, PyObject
*args
) {
4797 PyObject
*resultobj
;
4798 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4799 std::string
*arg2
= 0 ;
4802 PyObject
* obj0
= 0 ;
4803 PyObject
* obj1
= 0 ;
4804 PyObject
* obj2
= 0 ;
4806 if(!PyArg_ParseTuple(args
,(char *)"OOO:Configuration_setValue_bool",&obj0
,&obj1
,&obj2
)) goto fail
;
4807 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4809 if (PyString_Check(obj1
)) {
4810 temp2
= std::string(PyString_AsString(obj1
));
4813 SWIG_exception(SWIG_TypeError
, "string expected");
4816 arg3
= (bool) PyInt_AsLong(obj2
);
4817 if (PyErr_Occurred()) SWIG_fail
;
4818 (arg1
)->setValue((std::string
const &)*arg2
,arg3
);
4820 Py_INCREF(Py_None
); resultobj
= Py_None
;
4827 static PyObject
*_wrap_Configuration_setValue(PyObject
*self
, PyObject
*args
) {
4828 PyObject
*resultobj
;
4829 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4830 std::string
*arg2
= 0 ;
4833 PyObject
* obj0
= 0 ;
4834 PyObject
* obj1
= 0 ;
4836 if(!PyArg_ParseTuple(args
,(char *)"OOi:Configuration_setValue",&obj0
,&obj1
,&arg3
)) goto fail
;
4837 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4839 if (PyString_Check(obj1
)) {
4840 temp2
= std::string(PyString_AsString(obj1
));
4843 SWIG_exception(SWIG_TypeError
, "string expected");
4846 (arg1
)->setValue((std::string
const &)*arg2
,arg3
);
4848 Py_INCREF(Py_None
); resultobj
= Py_None
;
4855 static PyObject
*_wrap_Configuration_setValue_unsigned(PyObject
*self
, PyObject
*args
) {
4856 PyObject
*resultobj
;
4857 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4858 std::string
*arg2
= 0 ;
4861 PyObject
* obj0
= 0 ;
4862 PyObject
* obj1
= 0 ;
4863 PyObject
* obj2
= 0 ;
4865 if(!PyArg_ParseTuple(args
,(char *)"OOO:Configuration_setValue_unsigned",&obj0
,&obj1
,&obj2
)) goto fail
;
4866 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4868 if (PyString_Check(obj1
)) {
4869 temp2
= std::string(PyString_AsString(obj1
));
4872 SWIG_exception(SWIG_TypeError
, "string expected");
4875 arg3
= (unsigned int) PyInt_AsLong(obj2
);
4876 if (PyErr_Occurred()) SWIG_fail
;
4877 (arg1
)->setValue((std::string
const &)*arg2
,arg3
);
4879 Py_INCREF(Py_None
); resultobj
= Py_None
;
4886 static PyObject
*_wrap_Configuration_setValue_long(PyObject
*self
, PyObject
*args
) {
4887 PyObject
*resultobj
;
4888 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4889 std::string
*arg2
= 0 ;
4892 PyObject
* obj0
= 0 ;
4893 PyObject
* obj1
= 0 ;
4895 if(!PyArg_ParseTuple(args
,(char *)"OOl:Configuration_setValue_long",&obj0
,&obj1
,&arg3
)) goto fail
;
4896 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4898 if (PyString_Check(obj1
)) {
4899 temp2
= std::string(PyString_AsString(obj1
));
4902 SWIG_exception(SWIG_TypeError
, "string expected");
4905 (arg1
)->setValue((std::string
const &)*arg2
,arg3
);
4907 Py_INCREF(Py_None
); resultobj
= Py_None
;
4914 static PyObject
*_wrap_Configuration_setValue_unsignedlong(PyObject
*self
, PyObject
*args
) {
4915 PyObject
*resultobj
;
4916 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4917 std::string
*arg2
= 0 ;
4918 unsigned long arg3
;
4920 PyObject
* obj0
= 0 ;
4921 PyObject
* obj1
= 0 ;
4922 PyObject
* obj2
= 0 ;
4924 if(!PyArg_ParseTuple(args
,(char *)"OOO:Configuration_setValue_unsignedlong",&obj0
,&obj1
,&obj2
)) goto fail
;
4925 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4927 if (PyString_Check(obj1
)) {
4928 temp2
= std::string(PyString_AsString(obj1
));
4931 SWIG_exception(SWIG_TypeError
, "string expected");
4934 arg3
= (unsigned long) PyInt_AsLong(obj2
);
4935 if (PyErr_Occurred()) SWIG_fail
;
4936 (arg1
)->setValue((std::string
const &)*arg2
,arg3
);
4938 Py_INCREF(Py_None
); resultobj
= Py_None
;
4945 static PyObject
*_wrap_Configuration_setValue_string(PyObject
*self
, PyObject
*args
) {
4946 PyObject
*resultobj
;
4947 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4948 std::string
*arg2
= 0 ;
4949 std::string
*arg3
= 0 ;
4952 PyObject
* obj0
= 0 ;
4953 PyObject
* obj1
= 0 ;
4954 PyObject
* obj2
= 0 ;
4956 if(!PyArg_ParseTuple(args
,(char *)"OOO:Configuration_setValue_string",&obj0
,&obj1
,&obj2
)) goto fail
;
4957 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4959 if (PyString_Check(obj1
)) {
4960 temp2
= std::string(PyString_AsString(obj1
));
4963 SWIG_exception(SWIG_TypeError
, "string expected");
4967 if (PyString_Check(obj2
)) {
4968 temp3
= std::string(PyString_AsString(obj2
));
4971 SWIG_exception(SWIG_TypeError
, "string expected");
4974 (arg1
)->setValue((std::string
const &)*arg2
,(std::string
const &)*arg3
);
4976 Py_INCREF(Py_None
); resultobj
= Py_None
;
4983 static PyObject
*_wrap_Configuration_setValue_charptr(PyObject
*self
, PyObject
*args
) {
4984 PyObject
*resultobj
;
4985 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
4986 std::string
*arg2
= 0 ;
4989 PyObject
* obj0
= 0 ;
4990 PyObject
* obj1
= 0 ;
4992 if(!PyArg_ParseTuple(args
,(char *)"OOs:Configuration_setValue_charptr",&obj0
,&obj1
,&arg3
)) goto fail
;
4993 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4995 if (PyString_Check(obj1
)) {
4996 temp2
= std::string(PyString_AsString(obj1
));
4999 SWIG_exception(SWIG_TypeError
, "string expected");
5002 (arg1
)->setValue((std::string
const &)*arg2
,(char const *)arg3
);
5004 Py_INCREF(Py_None
); resultobj
= Py_None
;
5011 static PyObject
*_wrap_Configuration_getValue__SWIG_0(PyObject
*self
, PyObject
*args
) {
5012 PyObject
*resultobj
;
5013 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
5014 std::string
*arg2
= 0 ;
5018 PyObject
* obj0
= 0 ;
5019 PyObject
* obj1
= 0 ;
5020 PyObject
* obj2
= 0 ;
5022 if(!PyArg_ParseTuple(args
,(char *)"OOO:Configuration_getValue",&obj0
,&obj1
,&obj2
)) goto fail
;
5023 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5025 if (PyString_Check(obj1
)) {
5026 temp2
= std::string(PyString_AsString(obj1
));
5029 SWIG_exception(SWIG_TypeError
, "string expected");
5032 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_bool
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5034 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
5036 result
= (bool)((otk::Configuration
const *)arg1
)->getValue((std::string
const &)*arg2
,*arg3
);
5038 resultobj
= PyInt_FromLong((long)result
);
5045 static PyObject
*_wrap_Configuration_getValue__SWIG_1(PyObject
*self
, PyObject
*args
) {
5046 PyObject
*resultobj
;
5047 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
5048 std::string
*arg2
= 0 ;
5052 PyObject
* obj0
= 0 ;
5053 PyObject
* obj1
= 0 ;
5054 PyObject
* obj2
= 0 ;
5056 if(!PyArg_ParseTuple(args
,(char *)"OOO:Configuration_getValue",&obj0
,&obj1
,&obj2
)) goto fail
;
5057 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5059 if (PyString_Check(obj1
)) {
5060 temp2
= std::string(PyString_AsString(obj1
));
5063 SWIG_exception(SWIG_TypeError
, "string expected");
5066 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_int
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5068 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
5070 result
= (bool)((otk::Configuration
const *)arg1
)->getValue((std::string
const &)*arg2
,*arg3
);
5072 resultobj
= PyInt_FromLong((long)result
);
5079 static PyObject
*_wrap_Configuration_getValue__SWIG_2(PyObject
*self
, PyObject
*args
) {
5080 PyObject
*resultobj
;
5081 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
5082 std::string
*arg2
= 0 ;
5083 unsigned int *arg3
= 0 ;
5086 PyObject
* obj0
= 0 ;
5087 PyObject
* obj1
= 0 ;
5088 PyObject
* obj2
= 0 ;
5090 if(!PyArg_ParseTuple(args
,(char *)"OOO:Configuration_getValue",&obj0
,&obj1
,&obj2
)) goto fail
;
5091 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5093 if (PyString_Check(obj1
)) {
5094 temp2
= std::string(PyString_AsString(obj1
));
5097 SWIG_exception(SWIG_TypeError
, "string expected");
5100 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_unsigned_int
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5102 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
5104 result
= (bool)((otk::Configuration
const *)arg1
)->getValue((std::string
const &)*arg2
,*arg3
);
5106 resultobj
= PyInt_FromLong((long)result
);
5113 static PyObject
*_wrap_Configuration_getValue__SWIG_3(PyObject
*self
, PyObject
*args
) {
5114 PyObject
*resultobj
;
5115 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
5116 std::string
*arg2
= 0 ;
5120 PyObject
* obj0
= 0 ;
5121 PyObject
* obj1
= 0 ;
5122 PyObject
* obj2
= 0 ;
5124 if(!PyArg_ParseTuple(args
,(char *)"OOO:Configuration_getValue",&obj0
,&obj1
,&obj2
)) goto fail
;
5125 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5127 if (PyString_Check(obj1
)) {
5128 temp2
= std::string(PyString_AsString(obj1
));
5131 SWIG_exception(SWIG_TypeError
, "string expected");
5134 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_long
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5136 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
5138 result
= (bool)((otk::Configuration
const *)arg1
)->getValue((std::string
const &)*arg2
,*arg3
);
5140 resultobj
= PyInt_FromLong((long)result
);
5147 static PyObject
*_wrap_Configuration_getValue__SWIG_4(PyObject
*self
, PyObject
*args
) {
5148 PyObject
*resultobj
;
5149 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
5150 std::string
*arg2
= 0 ;
5151 unsigned long *arg3
= 0 ;
5154 PyObject
* obj0
= 0 ;
5155 PyObject
* obj1
= 0 ;
5156 PyObject
* obj2
= 0 ;
5158 if(!PyArg_ParseTuple(args
,(char *)"OOO:Configuration_getValue",&obj0
,&obj1
,&obj2
)) goto fail
;
5159 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5161 if (PyString_Check(obj1
)) {
5162 temp2
= std::string(PyString_AsString(obj1
));
5165 SWIG_exception(SWIG_TypeError
, "string expected");
5168 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_unsigned_long
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5170 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
5172 result
= (bool)((otk::Configuration
const *)arg1
)->getValue((std::string
const &)*arg2
,*arg3
);
5174 resultobj
= PyInt_FromLong((long)result
);
5181 static PyObject
*_wrap_Configuration_getValue__SWIG_5(PyObject
*self
, PyObject
*args
) {
5182 PyObject
*resultobj
;
5183 otk::Configuration
*arg1
= (otk::Configuration
*) 0 ;
5184 std::string
*arg2
= 0 ;
5185 std::string
*arg3
= 0 ;
5188 PyObject
* obj0
= 0 ;
5189 PyObject
* obj1
= 0 ;
5190 PyObject
* obj2
= 0 ;
5192 if(!PyArg_ParseTuple(args
,(char *)"OOO:Configuration_getValue",&obj0
,&obj1
,&obj2
)) goto fail
;
5193 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5195 if (PyString_Check(obj1
)) {
5196 temp2
= std::string(PyString_AsString(obj1
));
5199 SWIG_exception(SWIG_TypeError
, "string expected");
5202 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_std__string
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5204 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
5206 result
= (bool)((otk::Configuration
const *)arg1
)->getValue((std::string
const &)*arg2
,*arg3
);
5208 resultobj
= PyInt_FromLong((long)result
);
5215 static PyObject
*_wrap_Configuration_getValue(PyObject
*self
, PyObject
*args
) {
5220 argc
= PyObject_Length(args
);
5221 for (ii
= 0; (ii
< argc
) && (ii
< 3); ii
++) {
5222 argv
[ii
] = PyTuple_GetItem(args
,ii
);
5228 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Configuration
, 0) == -1) {
5237 _v
= PyString_Check(argv
[1]) ? 1 : 0;
5242 if (SWIG_ConvertPtr(argv
[2], (void **) &ptr
, SWIGTYPE_p_bool
, 0) == -1) {
5250 return _wrap_Configuration_getValue__SWIG_0(self
,args
);
5259 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Configuration
, 0) == -1) {
5268 _v
= PyString_Check(argv
[1]) ? 1 : 0;
5273 if (SWIG_ConvertPtr(argv
[2], (void **) &ptr
, SWIGTYPE_p_int
, 0) == -1) {
5281 return _wrap_Configuration_getValue__SWIG_1(self
,args
);
5290 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Configuration
, 0) == -1) {
5299 _v
= PyString_Check(argv
[1]) ? 1 : 0;
5304 if (SWIG_ConvertPtr(argv
[2], (void **) &ptr
, SWIGTYPE_p_unsigned_int
, 0) == -1) {
5312 return _wrap_Configuration_getValue__SWIG_2(self
,args
);
5321 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Configuration
, 0) == -1) {
5330 _v
= PyString_Check(argv
[1]) ? 1 : 0;
5335 if (SWIG_ConvertPtr(argv
[2], (void **) &ptr
, SWIGTYPE_p_long
, 0) == -1) {
5343 return _wrap_Configuration_getValue__SWIG_3(self
,args
);
5352 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Configuration
, 0) == -1) {
5361 _v
= PyString_Check(argv
[1]) ? 1 : 0;
5366 if (SWIG_ConvertPtr(argv
[2], (void **) &ptr
, SWIGTYPE_p_unsigned_long
, 0) == -1) {
5374 return _wrap_Configuration_getValue__SWIG_4(self
,args
);
5383 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Configuration
, 0) == -1) {
5392 _v
= PyString_Check(argv
[1]) ? 1 : 0;
5397 if (SWIG_ConvertPtr(argv
[2], (void **) &ptr
, SWIGTYPE_p_std__string
, 0) == -1) {
5405 return _wrap_Configuration_getValue__SWIG_5(self
,args
);
5411 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'Configuration_getValue'");
5416 static PyObject
* Configuration_swigregister(PyObject
*self
, PyObject
*args
) {
5418 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
5419 SWIG_TypeClientData(SWIGTYPE_p_otk__Configuration
, obj
);
5421 return Py_BuildValue((char *)"");
5423 static int _wrap_OBDisplay_display_set(PyObject
*_val
) {
5426 if ((SWIG_ConvertPtr(_val
,(void **) &temp
, SWIGTYPE_p_Display
, SWIG_POINTER_EXCEPTION
| SWIG_POINTER_DISOWN
)) == -1) {
5427 PyErr_SetString(PyExc_TypeError
, "C variable 'otk::OBDisplay::display (Display *)'");
5430 otk::OBDisplay::display
= (Display
*) temp
;
5436 static PyObject
*_wrap_OBDisplay_display_get() {
5439 pyobj
= SWIG_NewPointerObj((void *) otk::OBDisplay::display
, SWIGTYPE_p_Display
, 0);
5444 static PyObject
*_wrap_OBDisplay_initialize(PyObject
*self
, PyObject
*args
) {
5445 PyObject
*resultobj
;
5448 if(!PyArg_ParseTuple(args
,(char *)"s:OBDisplay_initialize",&arg1
)) goto fail
;
5449 otk::OBDisplay::initialize(arg1
);
5451 Py_INCREF(Py_None
); resultobj
= Py_None
;
5458 static PyObject
*_wrap_OBDisplay_destroy(PyObject
*self
, PyObject
*args
) {
5459 PyObject
*resultobj
;
5461 if(!PyArg_ParseTuple(args
,(char *)":OBDisplay_destroy")) goto fail
;
5462 otk::OBDisplay::destroy();
5464 Py_INCREF(Py_None
); resultobj
= Py_None
;
5471 static PyObject
*_wrap_OBDisplay_gcCache(PyObject
*self
, PyObject
*args
) {
5472 PyObject
*resultobj
;
5473 otk::BGCCache
*result
;
5475 if(!PyArg_ParseTuple(args
,(char *)":OBDisplay_gcCache")) goto fail
;
5476 result
= (otk::BGCCache
*)otk::OBDisplay::gcCache();
5478 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BGCCache
, 0);
5485 static PyObject
*_wrap_OBDisplay_screenInfo(PyObject
*self
, PyObject
*args
) {
5486 PyObject
*resultobj
;
5488 otk::ScreenInfo
*result
;
5490 if(!PyArg_ParseTuple(args
,(char *)"i:OBDisplay_screenInfo",&arg1
)) goto fail
;
5491 result
= (otk::ScreenInfo
*)otk::OBDisplay::screenInfo(arg1
);
5493 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__ScreenInfo
, 0);
5500 static PyObject
*_wrap_OBDisplay_shape(PyObject
*self
, PyObject
*args
) {
5501 PyObject
*resultobj
;
5504 if(!PyArg_ParseTuple(args
,(char *)":OBDisplay_shape")) goto fail
;
5505 result
= (bool)otk::OBDisplay::shape();
5507 resultobj
= PyInt_FromLong((long)result
);
5514 static PyObject
*_wrap_OBDisplay_shapeEventBase(PyObject
*self
, PyObject
*args
) {
5515 PyObject
*resultobj
;
5518 if(!PyArg_ParseTuple(args
,(char *)":OBDisplay_shapeEventBase")) goto fail
;
5519 result
= (int)otk::OBDisplay::shapeEventBase();
5521 resultobj
= PyInt_FromLong((long)result
);
5528 static PyObject
*_wrap_OBDisplay_xinerama(PyObject
*self
, PyObject
*args
) {
5529 PyObject
*resultobj
;
5532 if(!PyArg_ParseTuple(args
,(char *)":OBDisplay_xinerama")) goto fail
;
5533 result
= (bool)otk::OBDisplay::xinerama();
5535 resultobj
= PyInt_FromLong((long)result
);
5542 static PyObject
*_wrap_OBDisplay_grab(PyObject
*self
, PyObject
*args
) {
5543 PyObject
*resultobj
;
5545 if(!PyArg_ParseTuple(args
,(char *)":OBDisplay_grab")) goto fail
;
5546 otk::OBDisplay::grab();
5548 Py_INCREF(Py_None
); resultobj
= Py_None
;
5555 static PyObject
*_wrap_OBDisplay_ungrab(PyObject
*self
, PyObject
*args
) {
5556 PyObject
*resultobj
;
5558 if(!PyArg_ParseTuple(args
,(char *)":OBDisplay_ungrab")) goto fail
;
5559 otk::OBDisplay::ungrab();
5561 Py_INCREF(Py_None
); resultobj
= Py_None
;
5568 static PyObject
*_wrap_OBDisplay_grabButton(PyObject
*self
, PyObject
*args
) {
5569 PyObject
*resultobj
;
5583 PyObject
* obj0
= 0 ;
5584 PyObject
* obj1
= 0 ;
5585 PyObject
* obj2
= 0 ;
5586 PyObject
* obj3
= 0 ;
5587 PyObject
* obj4
= 0 ;
5588 PyObject
* obj7
= 0 ;
5589 PyObject
* obj8
= 0 ;
5590 PyObject
* obj9
= 0 ;
5592 if(!PyArg_ParseTuple(args
,(char *)"OOOOOiiOOO:OBDisplay_grabButton",&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&arg6
,&arg7
,&obj7
,&obj8
,&obj9
)) goto fail
;
5593 arg1
= (unsigned int) PyInt_AsLong(obj0
);
5594 if (PyErr_Occurred()) SWIG_fail
;
5595 arg2
= (unsigned int) PyInt_AsLong(obj1
);
5596 if (PyErr_Occurred()) SWIG_fail
;
5597 if ((SWIG_ConvertPtr(obj2
,(void **) &argp3
, SWIGTYPE_p_Window
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
5599 arg4
= (bool) PyInt_AsLong(obj3
);
5600 if (PyErr_Occurred()) SWIG_fail
;
5601 arg5
= (unsigned int) PyInt_AsLong(obj4
);
5602 if (PyErr_Occurred()) SWIG_fail
;
5603 if ((SWIG_ConvertPtr(obj7
,(void **) &argp8
, SWIGTYPE_p_Window
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
5605 if ((SWIG_ConvertPtr(obj8
,(void **) &argp9
, SWIGTYPE_p_Cursor
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
5607 arg10
= (bool) PyInt_AsLong(obj9
);
5608 if (PyErr_Occurred()) SWIG_fail
;
5609 otk::OBDisplay::grabButton(arg1
,arg2
,arg3
,arg4
,arg5
,arg6
,arg7
,arg8
,arg9
,arg10
);
5611 Py_INCREF(Py_None
); resultobj
= Py_None
;
5618 static PyObject
*_wrap_OBDisplay_ungrabButton(PyObject
*self
, PyObject
*args
) {
5619 PyObject
*resultobj
;
5624 PyObject
* obj0
= 0 ;
5625 PyObject
* obj1
= 0 ;
5626 PyObject
* obj2
= 0 ;
5628 if(!PyArg_ParseTuple(args
,(char *)"OOO:OBDisplay_ungrabButton",&obj0
,&obj1
,&obj2
)) goto fail
;
5629 arg1
= (unsigned int) PyInt_AsLong(obj0
);
5630 if (PyErr_Occurred()) SWIG_fail
;
5631 arg2
= (unsigned int) PyInt_AsLong(obj1
);
5632 if (PyErr_Occurred()) SWIG_fail
;
5633 if ((SWIG_ConvertPtr(obj2
,(void **) &argp3
, SWIGTYPE_p_Window
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
5635 otk::OBDisplay::ungrabButton(arg1
,arg2
,arg3
);
5637 Py_INCREF(Py_None
); resultobj
= Py_None
;
5644 static PyObject
*_wrap_OBDisplay_grabKey(PyObject
*self
, PyObject
*args
) {
5645 PyObject
*resultobj
;
5654 PyObject
* obj0
= 0 ;
5655 PyObject
* obj1
= 0 ;
5656 PyObject
* obj2
= 0 ;
5657 PyObject
* obj3
= 0 ;
5658 PyObject
* obj6
= 0 ;
5660 if(!PyArg_ParseTuple(args
,(char *)"OOOOiiO:OBDisplay_grabKey",&obj0
,&obj1
,&obj2
,&obj3
,&arg5
,&arg6
,&obj6
)) goto fail
;
5661 arg1
= (unsigned int) PyInt_AsLong(obj0
);
5662 if (PyErr_Occurred()) SWIG_fail
;
5663 arg2
= (unsigned int) PyInt_AsLong(obj1
);
5664 if (PyErr_Occurred()) SWIG_fail
;
5665 if ((SWIG_ConvertPtr(obj2
,(void **) &argp3
, SWIGTYPE_p_Window
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
5667 arg4
= (bool) PyInt_AsLong(obj3
);
5668 if (PyErr_Occurred()) SWIG_fail
;
5669 arg7
= (bool) PyInt_AsLong(obj6
);
5670 if (PyErr_Occurred()) SWIG_fail
;
5671 otk::OBDisplay::grabKey(arg1
,arg2
,arg3
,arg4
,arg5
,arg6
,arg7
);
5673 Py_INCREF(Py_None
); resultobj
= Py_None
;
5680 static PyObject
*_wrap_OBDisplay_ungrabKey(PyObject
*self
, PyObject
*args
) {
5681 PyObject
*resultobj
;
5686 PyObject
* obj0
= 0 ;
5687 PyObject
* obj1
= 0 ;
5688 PyObject
* obj2
= 0 ;
5690 if(!PyArg_ParseTuple(args
,(char *)"OOO:OBDisplay_ungrabKey",&obj0
,&obj1
,&obj2
)) goto fail
;
5691 arg1
= (unsigned int) PyInt_AsLong(obj0
);
5692 if (PyErr_Occurred()) SWIG_fail
;
5693 arg2
= (unsigned int) PyInt_AsLong(obj1
);
5694 if (PyErr_Occurred()) SWIG_fail
;
5695 if ((SWIG_ConvertPtr(obj2
,(void **) &argp3
, SWIGTYPE_p_Window
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
5697 otk::OBDisplay::ungrabKey(arg1
,arg2
,arg3
);
5699 Py_INCREF(Py_None
); resultobj
= Py_None
;
5706 static PyObject
*_wrap_delete_OBDisplay(PyObject
*self
, PyObject
*args
) {
5707 PyObject
*resultobj
;
5708 otk::OBDisplay
*arg1
= (otk::OBDisplay
*) 0 ;
5709 PyObject
* obj0
= 0 ;
5711 if(!PyArg_ParseTuple(args
,(char *)"O:delete_OBDisplay",&obj0
)) goto fail
;
5712 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBDisplay
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5715 Py_INCREF(Py_None
); resultobj
= Py_None
;
5722 static PyObject
* OBDisplay_swigregister(PyObject
*self
, PyObject
*args
) {
5724 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
5725 SWIG_TypeClientData(SWIGTYPE_p_otk__OBDisplay
, obj
);
5727 return Py_BuildValue((char *)"");
5729 static PyObject
*_wrap_BFont_fallbackFont(PyObject
*self
, PyObject
*args
) {
5730 PyObject
*resultobj
;
5733 if(!PyArg_ParseTuple(args
,(char *)":BFont_fallbackFont")) goto fail
;
5734 result
= otk::BFont::fallbackFont();
5737 resultobj
= PyString_FromString((&result
)->c_str());
5745 static PyObject
*_wrap_BFont_setFallbackFont(PyObject
*self
, PyObject
*args
) {
5746 PyObject
*resultobj
;
5747 std::string
*arg1
= 0 ;
5749 PyObject
* obj0
= 0 ;
5751 if(!PyArg_ParseTuple(args
,(char *)"O:BFont_setFallbackFont",&obj0
)) goto fail
;
5753 if (PyString_Check(obj0
)) {
5754 temp1
= std::string(PyString_AsString(obj0
));
5757 SWIG_exception(SWIG_TypeError
, "string expected");
5760 otk::BFont::setFallbackFont((std::string
const &)*arg1
);
5762 Py_INCREF(Py_None
); resultobj
= Py_None
;
5769 static PyObject
*_wrap_new_BFont(PyObject
*self
, PyObject
*args
) {
5770 PyObject
*resultobj
;
5772 std::string
*arg2
= 0 ;
5774 unsigned char arg4
;
5775 unsigned char arg5
;
5778 PyObject
* obj1
= 0 ;
5779 PyObject
* obj2
= 0 ;
5780 PyObject
* obj3
= 0 ;
5781 PyObject
* obj4
= 0 ;
5783 if(!PyArg_ParseTuple(args
,(char *)"iOOOO:new_BFont",&arg1
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
;
5785 if (PyString_Check(obj1
)) {
5786 temp2
= std::string(PyString_AsString(obj1
));
5789 SWIG_exception(SWIG_TypeError
, "string expected");
5792 arg3
= (bool) PyInt_AsLong(obj2
);
5793 if (PyErr_Occurred()) SWIG_fail
;
5794 arg4
= (unsigned char) PyInt_AsLong(obj3
);
5795 if (PyErr_Occurred()) SWIG_fail
;
5796 arg5
= (unsigned char) PyInt_AsLong(obj4
);
5797 if (PyErr_Occurred()) SWIG_fail
;
5798 result
= (otk::BFont
*)new otk::BFont(arg1
,(std::string
const &)*arg2
,arg3
,arg4
,arg5
);
5800 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BFont
, 1);
5807 static PyObject
*_wrap_delete_BFont(PyObject
*self
, PyObject
*args
) {
5808 PyObject
*resultobj
;
5809 otk::BFont
*arg1
= (otk::BFont
*) 0 ;
5810 PyObject
* obj0
= 0 ;
5812 if(!PyArg_ParseTuple(args
,(char *)"O:delete_BFont",&obj0
)) goto fail
;
5813 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BFont
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5816 Py_INCREF(Py_None
); resultobj
= Py_None
;
5823 static PyObject
*_wrap_BFont_fontstring(PyObject
*self
, PyObject
*args
) {
5824 PyObject
*resultobj
;
5825 otk::BFont
*arg1
= (otk::BFont
*) 0 ;
5826 std::string
*result
;
5827 PyObject
* obj0
= 0 ;
5829 if(!PyArg_ParseTuple(args
,(char *)"O:BFont_fontstring",&obj0
)) goto fail
;
5830 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BFont
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5832 std::string
const &_result_ref
= ((otk::BFont
const *)arg1
)->fontstring();
5833 result
= (std::string
*) &_result_ref
;
5837 resultobj
= PyString_FromString(result
->c_str());
5845 static PyObject
*_wrap_BFont_height(PyObject
*self
, PyObject
*args
) {
5846 PyObject
*resultobj
;
5847 otk::BFont
*arg1
= (otk::BFont
*) 0 ;
5848 unsigned int result
;
5849 PyObject
* obj0
= 0 ;
5851 if(!PyArg_ParseTuple(args
,(char *)"O:BFont_height",&obj0
)) goto fail
;
5852 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BFont
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5853 result
= (unsigned int)((otk::BFont
const *)arg1
)->height();
5855 resultobj
= PyInt_FromLong((long)result
);
5862 static PyObject
*_wrap_BFont_maxCharWidth(PyObject
*self
, PyObject
*args
) {
5863 PyObject
*resultobj
;
5864 otk::BFont
*arg1
= (otk::BFont
*) 0 ;
5865 unsigned int result
;
5866 PyObject
* obj0
= 0 ;
5868 if(!PyArg_ParseTuple(args
,(char *)"O:BFont_maxCharWidth",&obj0
)) goto fail
;
5869 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BFont
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5870 result
= (unsigned int)((otk::BFont
const *)arg1
)->maxCharWidth();
5872 resultobj
= PyInt_FromLong((long)result
);
5879 static PyObject
*_wrap_BFont_measureString(PyObject
*self
, PyObject
*args
) {
5880 PyObject
*resultobj
;
5881 otk::BFont
*arg1
= (otk::BFont
*) 0 ;
5882 std::string
*arg2
= 0 ;
5883 bool arg3
= (bool) false ;
5884 unsigned int result
;
5886 PyObject
* obj0
= 0 ;
5887 PyObject
* obj1
= 0 ;
5888 PyObject
* obj2
= 0 ;
5890 if(!PyArg_ParseTuple(args
,(char *)"OO|O:BFont_measureString",&obj0
,&obj1
,&obj2
)) goto fail
;
5891 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BFont
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5893 if (PyString_Check(obj1
)) {
5894 temp2
= std::string(PyString_AsString(obj1
));
5897 SWIG_exception(SWIG_TypeError
, "string expected");
5901 arg3
= (bool) PyInt_AsLong(obj2
);
5902 if (PyErr_Occurred()) SWIG_fail
;
5904 result
= (unsigned int)((otk::BFont
const *)arg1
)->measureString((std::string
const &)*arg2
,arg3
);
5906 resultobj
= PyInt_FromLong((long)result
);
5913 static PyObject
*_wrap_BFont_drawString(PyObject
*self
, PyObject
*args
) {
5914 PyObject
*resultobj
;
5915 otk::BFont
*arg1
= (otk::BFont
*) 0 ;
5916 XftDraw
*arg2
= (XftDraw
*) 0 ;
5919 otk::BColor
*arg5
= 0 ;
5920 std::string
*arg6
= 0 ;
5921 bool arg7
= (bool) false ;
5923 PyObject
* obj0
= 0 ;
5924 PyObject
* obj1
= 0 ;
5925 PyObject
* obj4
= 0 ;
5926 PyObject
* obj5
= 0 ;
5927 PyObject
* obj6
= 0 ;
5929 if(!PyArg_ParseTuple(args
,(char *)"OOiiOO|O:BFont_drawString",&obj0
,&obj1
,&arg3
,&arg4
,&obj4
,&obj5
,&obj6
)) goto fail
;
5930 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BFont
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5931 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XftDraw
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5932 if ((SWIG_ConvertPtr(obj4
,(void **) &arg5
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5934 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
5937 if (PyString_Check(obj5
)) {
5938 temp6
= std::string(PyString_AsString(obj5
));
5941 SWIG_exception(SWIG_TypeError
, "string expected");
5945 arg7
= (bool) PyInt_AsLong(obj6
);
5946 if (PyErr_Occurred()) SWIG_fail
;
5948 ((otk::BFont
const *)arg1
)->drawString(arg2
,arg3
,arg4
,(otk::BColor
const &)*arg5
,(std::string
const &)*arg6
,arg7
);
5950 Py_INCREF(Py_None
); resultobj
= Py_None
;
5957 static PyObject
* BFont_swigregister(PyObject
*self
, PyObject
*args
) {
5959 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
5960 SWIG_TypeClientData(SWIGTYPE_p_otk__BFont
, obj
);
5962 return Py_BuildValue((char *)"");
5964 static PyObject
*_wrap_BGCCacheContext_set__SWIG_0(PyObject
*self
, PyObject
*args
) {
5965 PyObject
*resultobj
;
5966 otk::BGCCacheContext
*arg1
= (otk::BGCCacheContext
*) 0 ;
5967 otk::BColor
*arg2
= 0 ;
5968 XFontStruct
*arg3
= (XFontStruct
*) (XFontStruct
*)0 ;
5972 PyObject
* obj0
= 0 ;
5973 PyObject
* obj1
= 0 ;
5974 PyObject
* obj2
= 0 ;
5976 if(!PyArg_ParseTuple(args
,(char *)"OOOiii:BGCCacheContext_set",&obj0
,&obj1
,&obj2
,&arg4
,&arg5
,&arg6
)) goto fail
;
5977 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BGCCacheContext
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5978 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5980 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
5982 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_XFontStruct
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5983 (arg1
)->set((otk::BColor
const &)*arg2
,(XFontStruct
const *)arg3
,arg4
,arg5
,arg6
);
5985 Py_INCREF(Py_None
); resultobj
= Py_None
;
5992 static PyObject
*_wrap_BGCCacheContext_set__SWIG_1(PyObject
*self
, PyObject
*args
) {
5993 PyObject
*resultobj
;
5994 otk::BGCCacheContext
*arg1
= (otk::BGCCacheContext
*) 0 ;
5995 XFontStruct
*arg2
= (XFontStruct
*) (XFontStruct
*)0 ;
5996 PyObject
* obj0
= 0 ;
5997 PyObject
* obj1
= 0 ;
5999 if(!PyArg_ParseTuple(args
,(char *)"OO:BGCCacheContext_set",&obj0
,&obj1
)) goto fail
;
6000 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BGCCacheContext
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6001 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XFontStruct
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6002 (arg1
)->set((XFontStruct
const *)arg2
);
6004 Py_INCREF(Py_None
); resultobj
= Py_None
;
6011 static PyObject
*_wrap_BGCCacheContext_set(PyObject
*self
, PyObject
*args
) {
6016 argc
= PyObject_Length(args
);
6017 for (ii
= 0; (ii
< argc
) && (ii
< 6); ii
++) {
6018 argv
[ii
] = PyTuple_GetItem(args
,ii
);
6024 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__BGCCacheContext
, 0) == -1) {
6034 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_XFontStruct
, 0) == -1) {
6042 return _wrap_BGCCacheContext_set__SWIG_1(self
,args
);
6050 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__BGCCacheContext
, 0) == -1) {
6060 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_otk__BColor
, 0) == -1) {
6070 if (SWIG_ConvertPtr(argv
[2], (void **) &ptr
, SWIGTYPE_p_XFontStruct
, 0) == -1) {
6079 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
6083 _v
= (PyInt_Check(argv
[4]) || PyLong_Check(argv
[4])) ? 1 : 0;
6087 _v
= (PyInt_Check(argv
[5]) || PyLong_Check(argv
[5])) ? 1 : 0;
6090 return _wrap_BGCCacheContext_set__SWIG_0(self
,args
);
6099 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'BGCCacheContext_set'");
6104 static PyObject
*_wrap_delete_BGCCacheContext(PyObject
*self
, PyObject
*args
) {
6105 PyObject
*resultobj
;
6106 otk::BGCCacheContext
*arg1
= (otk::BGCCacheContext
*) 0 ;
6107 PyObject
* obj0
= 0 ;
6109 if(!PyArg_ParseTuple(args
,(char *)"O:delete_BGCCacheContext",&obj0
)) goto fail
;
6110 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BGCCacheContext
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6113 Py_INCREF(Py_None
); resultobj
= Py_None
;
6120 static PyObject
* BGCCacheContext_swigregister(PyObject
*self
, PyObject
*args
) {
6122 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
6123 SWIG_TypeClientData(SWIGTYPE_p_otk__BGCCacheContext
, obj
);
6125 return Py_BuildValue((char *)"");
6127 static PyObject
*_wrap_BGCCacheItem_gc(PyObject
*self
, PyObject
*args
) {
6128 PyObject
*resultobj
;
6129 otk::BGCCacheItem
*arg1
= (otk::BGCCacheItem
*) 0 ;
6131 PyObject
* obj0
= 0 ;
6133 if(!PyArg_ParseTuple(args
,(char *)"O:BGCCacheItem_gc",&obj0
)) goto fail
;
6134 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BGCCacheItem
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6136 GC
const &_result_ref
= ((otk::BGCCacheItem
const *)arg1
)->gc();
6137 result
= (GC
*) &_result_ref
;
6140 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_GC
, 0);
6147 static PyObject
*_wrap_delete_BGCCacheItem(PyObject
*self
, PyObject
*args
) {
6148 PyObject
*resultobj
;
6149 otk::BGCCacheItem
*arg1
= (otk::BGCCacheItem
*) 0 ;
6150 PyObject
* obj0
= 0 ;
6152 if(!PyArg_ParseTuple(args
,(char *)"O:delete_BGCCacheItem",&obj0
)) goto fail
;
6153 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BGCCacheItem
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6156 Py_INCREF(Py_None
); resultobj
= Py_None
;
6163 static PyObject
* BGCCacheItem_swigregister(PyObject
*self
, PyObject
*args
) {
6165 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
6166 SWIG_TypeClientData(SWIGTYPE_p_otk__BGCCacheItem
, obj
);
6168 return Py_BuildValue((char *)"");
6170 static PyObject
*_wrap_new_BGCCache(PyObject
*self
, PyObject
*args
) {
6171 PyObject
*resultobj
;
6173 otk::BGCCache
*result
;
6174 PyObject
* obj0
= 0 ;
6176 if(!PyArg_ParseTuple(args
,(char *)"O:new_BGCCache",&obj0
)) goto fail
;
6177 arg1
= (unsigned int) PyInt_AsLong(obj0
);
6178 if (PyErr_Occurred()) SWIG_fail
;
6179 result
= (otk::BGCCache
*)new otk::BGCCache(arg1
);
6181 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BGCCache
, 1);
6188 static PyObject
*_wrap_delete_BGCCache(PyObject
*self
, PyObject
*args
) {
6189 PyObject
*resultobj
;
6190 otk::BGCCache
*arg1
= (otk::BGCCache
*) 0 ;
6191 PyObject
* obj0
= 0 ;
6193 if(!PyArg_ParseTuple(args
,(char *)"O:delete_BGCCache",&obj0
)) goto fail
;
6194 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BGCCache
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6197 Py_INCREF(Py_None
); resultobj
= Py_None
;
6204 static PyObject
*_wrap_BGCCache_purge(PyObject
*self
, PyObject
*args
) {
6205 PyObject
*resultobj
;
6206 otk::BGCCache
*arg1
= (otk::BGCCache
*) 0 ;
6207 PyObject
* obj0
= 0 ;
6209 if(!PyArg_ParseTuple(args
,(char *)"O:BGCCache_purge",&obj0
)) goto fail
;
6210 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BGCCache
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6213 Py_INCREF(Py_None
); resultobj
= Py_None
;
6220 static PyObject
*_wrap_BGCCache_find(PyObject
*self
, PyObject
*args
) {
6221 PyObject
*resultobj
;
6222 otk::BGCCache
*arg1
= (otk::BGCCache
*) 0 ;
6223 otk::BColor
*arg2
= 0 ;
6224 XFontStruct
*arg3
= (XFontStruct
*) (XFontStruct
*)0 ;
6225 int arg4
= (int) GXcopy
;
6226 int arg5
= (int) ClipByChildren
;
6227 int arg6
= (int) 0 ;
6228 otk::BGCCacheItem
*result
;
6229 PyObject
* obj0
= 0 ;
6230 PyObject
* obj1
= 0 ;
6231 PyObject
* obj2
= 0 ;
6233 if(!PyArg_ParseTuple(args
,(char *)"OO|Oiii:BGCCache_find",&obj0
,&obj1
,&obj2
,&arg4
,&arg5
,&arg6
)) goto fail
;
6234 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BGCCache
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6235 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6237 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
6240 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_XFontStruct
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6242 result
= (otk::BGCCacheItem
*)(arg1
)->find((otk::BColor
const &)*arg2
,(XFontStruct
const *)arg3
,arg4
,arg5
,arg6
);
6244 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BGCCacheItem
, 0);
6251 static PyObject
*_wrap_BGCCache_release(PyObject
*self
, PyObject
*args
) {
6252 PyObject
*resultobj
;
6253 otk::BGCCache
*arg1
= (otk::BGCCache
*) 0 ;
6254 otk::BGCCacheItem
*arg2
= (otk::BGCCacheItem
*) 0 ;
6255 PyObject
* obj0
= 0 ;
6256 PyObject
* obj1
= 0 ;
6258 if(!PyArg_ParseTuple(args
,(char *)"OO:BGCCache_release",&obj0
,&obj1
)) goto fail
;
6259 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BGCCache
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6260 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BGCCacheItem
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6261 (arg1
)->release(arg2
);
6263 Py_INCREF(Py_None
); resultobj
= Py_None
;
6270 static PyObject
* BGCCache_swigregister(PyObject
*self
, PyObject
*args
) {
6272 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
6273 SWIG_TypeClientData(SWIGTYPE_p_otk__BGCCache
, obj
);
6275 return Py_BuildValue((char *)"");
6277 static PyObject
*_wrap_new_BPen(PyObject
*self
, PyObject
*args
) {
6278 PyObject
*resultobj
;
6279 otk::BColor
*arg1
= 0 ;
6280 XFontStruct
*arg2
= (XFontStruct
*) (XFontStruct
*)0 ;
6281 int arg3
= (int) 0 ;
6282 int arg4
= (int) GXcopy
;
6283 int arg5
= (int) ClipByChildren
;
6285 PyObject
* obj0
= 0 ;
6286 PyObject
* obj1
= 0 ;
6288 if(!PyArg_ParseTuple(args
,(char *)"O|Oiii:new_BPen",&obj0
,&obj1
,&arg3
,&arg4
,&arg5
)) goto fail
;
6289 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6291 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
6294 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XFontStruct
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6296 result
= (otk::BPen
*)new otk::BPen((otk::BColor
const &)*arg1
,(XFontStruct
const *)arg2
,arg3
,arg4
,arg5
);
6298 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BPen
, 1);
6305 static PyObject
*_wrap_delete_BPen(PyObject
*self
, PyObject
*args
) {
6306 PyObject
*resultobj
;
6307 otk::BPen
*arg1
= (otk::BPen
*) 0 ;
6308 PyObject
* obj0
= 0 ;
6310 if(!PyArg_ParseTuple(args
,(char *)"O:delete_BPen",&obj0
)) goto fail
;
6311 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BPen
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6314 Py_INCREF(Py_None
); resultobj
= Py_None
;
6321 static PyObject
*_wrap_BPen_gc(PyObject
*self
, PyObject
*args
) {
6322 PyObject
*resultobj
;
6323 otk::BPen
*arg1
= (otk::BPen
*) 0 ;
6325 PyObject
* obj0
= 0 ;
6327 if(!PyArg_ParseTuple(args
,(char *)"O:BPen_gc",&obj0
)) goto fail
;
6328 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BPen
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6330 GC
const &_result_ref
= ((otk::BPen
const *)arg1
)->gc();
6331 result
= (GC
*) &_result_ref
;
6334 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_GC
, 0);
6341 static PyObject
* BPen_swigregister(PyObject
*self
, PyObject
*args
) {
6343 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
6344 SWIG_TypeClientData(SWIGTYPE_p_otk__BPen
, obj
);
6346 return Py_BuildValue((char *)"");
6348 static PyObject
*_wrap_new_BImage(PyObject
*self
, PyObject
*args
) {
6349 PyObject
*resultobj
;
6350 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6353 otk::BImage
*result
;
6354 PyObject
* obj0
= 0 ;
6356 if(!PyArg_ParseTuple(args
,(char *)"Oii:new_BImage",&obj0
,&arg2
,&arg3
)) goto fail
;
6357 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6358 result
= (otk::BImage
*)new otk::BImage(arg1
,arg2
,arg3
);
6360 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BImage
, 1);
6367 static PyObject
*_wrap_delete_BImage(PyObject
*self
, PyObject
*args
) {
6368 PyObject
*resultobj
;
6369 otk::BImage
*arg1
= (otk::BImage
*) 0 ;
6370 PyObject
* obj0
= 0 ;
6372 if(!PyArg_ParseTuple(args
,(char *)"O:delete_BImage",&obj0
)) goto fail
;
6373 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImage
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6376 Py_INCREF(Py_None
); resultobj
= Py_None
;
6383 static PyObject
*_wrap_BImage_render(PyObject
*self
, PyObject
*args
) {
6384 PyObject
*resultobj
;
6385 otk::BImage
*arg1
= (otk::BImage
*) 0 ;
6386 otk::BTexture
*arg2
= 0 ;
6388 PyObject
* obj0
= 0 ;
6389 PyObject
* obj1
= 0 ;
6391 if(!PyArg_ParseTuple(args
,(char *)"OO:BImage_render",&obj0
,&obj1
)) goto fail
;
6392 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImage
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6393 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6395 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
6397 result
= (arg1
)->render((otk::BTexture
const &)*arg2
);
6401 resultptr
= new Pixmap((Pixmap
&) result
);
6402 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_Pixmap
, 1);
6410 static PyObject
* BImage_swigregister(PyObject
*self
, PyObject
*args
) {
6412 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
6413 SWIG_TypeClientData(SWIGTYPE_p_otk__BImage
, obj
);
6415 return Py_BuildValue((char *)"");
6417 static PyObject
*_wrap_new_BImageControl(PyObject
*self
, PyObject
*args
) {
6418 PyObject
*resultobj
;
6419 otk::OBTimerQueueManager
*arg1
= (otk::OBTimerQueueManager
*) 0 ;
6420 otk::ScreenInfo
*arg2
= (otk::ScreenInfo
*) 0 ;
6421 bool arg3
= (bool) False
;
6422 int arg4
= (int) 4 ;
6423 unsigned long arg5
= (unsigned long) 300000l ;
6424 unsigned long arg6
= (unsigned long) 200l ;
6425 otk::BImageControl
*result
;
6426 PyObject
* obj0
= 0 ;
6427 PyObject
* obj1
= 0 ;
6428 PyObject
* obj2
= 0 ;
6429 PyObject
* obj4
= 0 ;
6430 PyObject
* obj5
= 0 ;
6432 if(!PyArg_ParseTuple(args
,(char *)"OO|OiOO:new_BImageControl",&obj0
,&obj1
,&obj2
,&arg4
,&obj4
,&obj5
)) goto fail
;
6433 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimerQueueManager
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6434 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__ScreenInfo
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6436 arg3
= (bool) PyInt_AsLong(obj2
);
6437 if (PyErr_Occurred()) SWIG_fail
;
6440 arg5
= (unsigned long) PyInt_AsLong(obj4
);
6441 if (PyErr_Occurred()) SWIG_fail
;
6444 arg6
= (unsigned long) PyInt_AsLong(obj5
);
6445 if (PyErr_Occurred()) SWIG_fail
;
6447 result
= (otk::BImageControl
*)new otk::BImageControl(arg1
,(otk::ScreenInfo
const *)arg2
,arg3
,arg4
,arg5
,arg6
);
6449 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BImageControl
, 1);
6456 static PyObject
*_wrap_delete_BImageControl(PyObject
*self
, PyObject
*args
) {
6457 PyObject
*resultobj
;
6458 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6459 PyObject
* obj0
= 0 ;
6461 if(!PyArg_ParseTuple(args
,(char *)"O:delete_BImageControl",&obj0
)) goto fail
;
6462 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6465 Py_INCREF(Py_None
); resultobj
= Py_None
;
6472 static PyObject
*_wrap_BImageControl_doDither(PyObject
*self
, PyObject
*args
) {
6473 PyObject
*resultobj
;
6474 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6476 PyObject
* obj0
= 0 ;
6478 if(!PyArg_ParseTuple(args
,(char *)"O:BImageControl_doDither",&obj0
)) goto fail
;
6479 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6480 result
= (bool)(arg1
)->doDither();
6482 resultobj
= PyInt_FromLong((long)result
);
6489 static PyObject
*_wrap_BImageControl_getScreenInfo(PyObject
*self
, PyObject
*args
) {
6490 PyObject
*resultobj
;
6491 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6492 otk::ScreenInfo
*result
;
6493 PyObject
* obj0
= 0 ;
6495 if(!PyArg_ParseTuple(args
,(char *)"O:BImageControl_getScreenInfo",&obj0
)) goto fail
;
6496 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6497 result
= (otk::ScreenInfo
*)((otk::BImageControl
const *)arg1
)->getScreenInfo();
6499 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__ScreenInfo
, 0);
6506 static PyObject
*_wrap_BImageControl_getDrawable(PyObject
*self
, PyObject
*args
) {
6507 PyObject
*resultobj
;
6508 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6510 PyObject
* obj0
= 0 ;
6512 if(!PyArg_ParseTuple(args
,(char *)"O:BImageControl_getDrawable",&obj0
)) goto fail
;
6513 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6514 result
= ((otk::BImageControl
const *)arg1
)->getDrawable();
6518 resultptr
= new Window((Window
&) result
);
6519 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_Window
, 1);
6527 static PyObject
*_wrap_BImageControl_getVisual(PyObject
*self
, PyObject
*args
) {
6528 PyObject
*resultobj
;
6529 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6531 PyObject
* obj0
= 0 ;
6533 if(!PyArg_ParseTuple(args
,(char *)"O:BImageControl_getVisual",&obj0
)) goto fail
;
6534 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6535 result
= (Visual
*)(arg1
)->getVisual();
6537 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_Visual
, 0);
6544 static PyObject
*_wrap_BImageControl_getBitsPerPixel(PyObject
*self
, PyObject
*args
) {
6545 PyObject
*resultobj
;
6546 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6548 PyObject
* obj0
= 0 ;
6550 if(!PyArg_ParseTuple(args
,(char *)"O:BImageControl_getBitsPerPixel",&obj0
)) goto fail
;
6551 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6552 result
= (int)((otk::BImageControl
const *)arg1
)->getBitsPerPixel();
6554 resultobj
= PyInt_FromLong((long)result
);
6561 static PyObject
*_wrap_BImageControl_getDepth(PyObject
*self
, PyObject
*args
) {
6562 PyObject
*resultobj
;
6563 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6565 PyObject
* obj0
= 0 ;
6567 if(!PyArg_ParseTuple(args
,(char *)"O:BImageControl_getDepth",&obj0
)) goto fail
;
6568 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6569 result
= (int)((otk::BImageControl
const *)arg1
)->getDepth();
6571 resultobj
= PyInt_FromLong((long)result
);
6578 static PyObject
*_wrap_BImageControl_getColorsPerChannel(PyObject
*self
, PyObject
*args
) {
6579 PyObject
*resultobj
;
6580 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6582 PyObject
* obj0
= 0 ;
6584 if(!PyArg_ParseTuple(args
,(char *)"O:BImageControl_getColorsPerChannel",&obj0
)) goto fail
;
6585 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6586 result
= (int)((otk::BImageControl
const *)arg1
)->getColorsPerChannel();
6588 resultobj
= PyInt_FromLong((long)result
);
6595 static PyObject
*_wrap_BImageControl_getSqrt(PyObject
*self
, PyObject
*args
) {
6596 PyObject
*resultobj
;
6597 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6599 unsigned long result
;
6600 PyObject
* obj0
= 0 ;
6601 PyObject
* obj1
= 0 ;
6603 if(!PyArg_ParseTuple(args
,(char *)"OO:BImageControl_getSqrt",&obj0
,&obj1
)) goto fail
;
6604 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6605 arg2
= (unsigned int) PyInt_AsLong(obj1
);
6606 if (PyErr_Occurred()) SWIG_fail
;
6607 result
= (unsigned long)(arg1
)->getSqrt(arg2
);
6609 resultobj
= PyInt_FromLong((long)result
);
6616 static PyObject
*_wrap_BImageControl_renderImage(PyObject
*self
, PyObject
*args
) {
6617 PyObject
*resultobj
;
6618 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6621 otk::BTexture
*arg4
= 0 ;
6623 PyObject
* obj0
= 0 ;
6624 PyObject
* obj1
= 0 ;
6625 PyObject
* obj2
= 0 ;
6626 PyObject
* obj3
= 0 ;
6628 if(!PyArg_ParseTuple(args
,(char *)"OOOO:BImageControl_renderImage",&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
6629 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6630 arg2
= (unsigned int) PyInt_AsLong(obj1
);
6631 if (PyErr_Occurred()) SWIG_fail
;
6632 arg3
= (unsigned int) PyInt_AsLong(obj2
);
6633 if (PyErr_Occurred()) SWIG_fail
;
6634 if ((SWIG_ConvertPtr(obj3
,(void **) &arg4
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6636 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
6638 result
= (arg1
)->renderImage(arg2
,arg3
,(otk::BTexture
const &)*arg4
);
6642 resultptr
= new Pixmap((Pixmap
&) result
);
6643 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_Pixmap
, 1);
6651 static PyObject
*_wrap_BImageControl_installRootColormap(PyObject
*self
, PyObject
*args
) {
6652 PyObject
*resultobj
;
6653 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6654 PyObject
* obj0
= 0 ;
6656 if(!PyArg_ParseTuple(args
,(char *)"O:BImageControl_installRootColormap",&obj0
)) goto fail
;
6657 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6658 (arg1
)->installRootColormap();
6660 Py_INCREF(Py_None
); resultobj
= Py_None
;
6667 static PyObject
*_wrap_BImageControl_removeImage(PyObject
*self
, PyObject
*args
) {
6668 PyObject
*resultobj
;
6669 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6672 PyObject
* obj0
= 0 ;
6673 PyObject
* obj1
= 0 ;
6675 if(!PyArg_ParseTuple(args
,(char *)"OO:BImageControl_removeImage",&obj0
,&obj1
)) goto fail
;
6676 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6677 if ((SWIG_ConvertPtr(obj1
,(void **) &argp2
, SWIGTYPE_p_Pixmap
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
6679 (arg1
)->removeImage(arg2
);
6681 Py_INCREF(Py_None
); resultobj
= Py_None
;
6688 static PyObject
*_wrap_BImageControl_getColorTables(PyObject
*self
, PyObject
*args
) {
6689 PyObject
*resultobj
;
6690 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6691 unsigned char **arg2
= (unsigned char **) 0 ;
6692 unsigned char **arg3
= (unsigned char **) 0 ;
6693 unsigned char **arg4
= (unsigned char **) 0 ;
6694 int *arg5
= (int *) 0 ;
6695 int *arg6
= (int *) 0 ;
6696 int *arg7
= (int *) 0 ;
6697 int *arg8
= (int *) 0 ;
6698 int *arg9
= (int *) 0 ;
6699 int *arg10
= (int *) 0 ;
6700 PyObject
* obj0
= 0 ;
6701 PyObject
* obj1
= 0 ;
6702 PyObject
* obj2
= 0 ;
6703 PyObject
* obj3
= 0 ;
6704 PyObject
* obj4
= 0 ;
6705 PyObject
* obj5
= 0 ;
6706 PyObject
* obj6
= 0 ;
6707 PyObject
* obj7
= 0 ;
6708 PyObject
* obj8
= 0 ;
6709 PyObject
* obj9
= 0 ;
6711 if(!PyArg_ParseTuple(args
,(char *)"OOOOOOOOOO:BImageControl_getColorTables",&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
,&obj8
,&obj9
)) goto fail
;
6712 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6713 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_p_unsigned_char
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6714 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_p_unsigned_char
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6715 if ((SWIG_ConvertPtr(obj3
,(void **) &arg4
, SWIGTYPE_p_p_unsigned_char
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6716 if ((SWIG_ConvertPtr(obj4
,(void **) &arg5
, SWIGTYPE_p_int
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6717 if ((SWIG_ConvertPtr(obj5
,(void **) &arg6
, SWIGTYPE_p_int
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6718 if ((SWIG_ConvertPtr(obj6
,(void **) &arg7
, SWIGTYPE_p_int
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6719 if ((SWIG_ConvertPtr(obj7
,(void **) &arg8
, SWIGTYPE_p_int
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6720 if ((SWIG_ConvertPtr(obj8
,(void **) &arg9
, SWIGTYPE_p_int
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6721 if ((SWIG_ConvertPtr(obj9
,(void **) &arg10
, SWIGTYPE_p_int
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6722 (arg1
)->getColorTables(arg2
,arg3
,arg4
,arg5
,arg6
,arg7
,arg8
,arg9
,arg10
);
6724 Py_INCREF(Py_None
); resultobj
= Py_None
;
6731 static PyObject
*_wrap_BImageControl_getXColorTable(PyObject
*self
, PyObject
*args
) {
6732 PyObject
*resultobj
;
6733 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6734 XColor
**arg2
= (XColor
**) 0 ;
6735 int *arg3
= (int *) 0 ;
6736 PyObject
* obj0
= 0 ;
6737 PyObject
* obj1
= 0 ;
6738 PyObject
* obj2
= 0 ;
6740 if(!PyArg_ParseTuple(args
,(char *)"OOO:BImageControl_getXColorTable",&obj0
,&obj1
,&obj2
)) goto fail
;
6741 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6742 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_p_XColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6743 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_int
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6744 (arg1
)->getXColorTable(arg2
,arg3
);
6746 Py_INCREF(Py_None
); resultobj
= Py_None
;
6753 static PyObject
*_wrap_BImageControl_getGradientBuffers(PyObject
*self
, PyObject
*args
) {
6754 PyObject
*resultobj
;
6755 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6758 unsigned int **arg4
= (unsigned int **) 0 ;
6759 unsigned int **arg5
= (unsigned int **) 0 ;
6760 PyObject
* obj0
= 0 ;
6761 PyObject
* obj1
= 0 ;
6762 PyObject
* obj2
= 0 ;
6763 PyObject
* obj3
= 0 ;
6764 PyObject
* obj4
= 0 ;
6766 if(!PyArg_ParseTuple(args
,(char *)"OOOOO:BImageControl_getGradientBuffers",&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
;
6767 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6768 arg2
= (unsigned int) PyInt_AsLong(obj1
);
6769 if (PyErr_Occurred()) SWIG_fail
;
6770 arg3
= (unsigned int) PyInt_AsLong(obj2
);
6771 if (PyErr_Occurred()) SWIG_fail
;
6772 if ((SWIG_ConvertPtr(obj3
,(void **) &arg4
, SWIGTYPE_p_p_unsigned_int
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6773 if ((SWIG_ConvertPtr(obj4
,(void **) &arg5
, SWIGTYPE_p_p_unsigned_int
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6774 (arg1
)->getGradientBuffers(arg2
,arg3
,arg4
,arg5
);
6776 Py_INCREF(Py_None
); resultobj
= Py_None
;
6783 static PyObject
*_wrap_BImageControl_setDither(PyObject
*self
, PyObject
*args
) {
6784 PyObject
*resultobj
;
6785 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6787 PyObject
* obj0
= 0 ;
6788 PyObject
* obj1
= 0 ;
6790 if(!PyArg_ParseTuple(args
,(char *)"OO:BImageControl_setDither",&obj0
,&obj1
)) goto fail
;
6791 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6792 arg2
= (bool) PyInt_AsLong(obj1
);
6793 if (PyErr_Occurred()) SWIG_fail
;
6794 (arg1
)->setDither(arg2
);
6796 Py_INCREF(Py_None
); resultobj
= Py_None
;
6803 static PyObject
*_wrap_BImageControl_setColorsPerChannel(PyObject
*self
, PyObject
*args
) {
6804 PyObject
*resultobj
;
6805 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6807 PyObject
* obj0
= 0 ;
6809 if(!PyArg_ParseTuple(args
,(char *)"Oi:BImageControl_setColorsPerChannel",&obj0
,&arg2
)) goto fail
;
6810 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6811 (arg1
)->setColorsPerChannel(arg2
);
6813 Py_INCREF(Py_None
); resultobj
= Py_None
;
6820 static PyObject
*_wrap_BImageControl_timeout(PyObject
*self
, PyObject
*args
) {
6821 PyObject
*resultobj
;
6822 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
6823 PyObject
* obj0
= 0 ;
6825 if(!PyArg_ParseTuple(args
,(char *)"O:BImageControl_timeout",&obj0
)) goto fail
;
6826 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6827 otk::BImageControl::timeout(arg1
);
6829 Py_INCREF(Py_None
); resultobj
= Py_None
;
6836 static PyObject
* BImageControl_swigregister(PyObject
*self
, PyObject
*args
) {
6838 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
6839 SWIG_TypeClientData(SWIGTYPE_p_otk__BImageControl
, obj
);
6841 return Py_BuildValue((char *)"");
6843 static PyObject
*_wrap_new_Point__SWIG_0(PyObject
*self
, PyObject
*args
) {
6844 PyObject
*resultobj
;
6847 if(!PyArg_ParseTuple(args
,(char *)":new_Point")) goto fail
;
6848 result
= (otk::Point
*)new otk::Point();
6850 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Point
, 1);
6857 static PyObject
*_wrap_new_Point__SWIG_1(PyObject
*self
, PyObject
*args
) {
6858 PyObject
*resultobj
;
6863 if(!PyArg_ParseTuple(args
,(char *)"ii:new_Point",&arg1
,&arg2
)) goto fail
;
6864 result
= (otk::Point
*)new otk::Point(arg1
,arg2
);
6866 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Point
, 1);
6873 static PyObject
*_wrap_new_Point(PyObject
*self
, PyObject
*args
) {
6878 argc
= PyObject_Length(args
);
6879 for (ii
= 0; (ii
< argc
) && (ii
< 2); ii
++) {
6880 argv
[ii
] = PyTuple_GetItem(args
,ii
);
6883 return _wrap_new_Point__SWIG_0(self
,args
);
6888 _v
= (PyInt_Check(argv
[0]) || PyLong_Check(argv
[0])) ? 1 : 0;
6892 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
6895 return _wrap_new_Point__SWIG_1(self
,args
);
6900 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'new_Point'");
6905 static PyObject
*_wrap_Point_setX(PyObject
*self
, PyObject
*args
) {
6906 PyObject
*resultobj
;
6907 otk::Point
*arg1
= (otk::Point
*) 0 ;
6909 PyObject
* obj0
= 0 ;
6911 if(!PyArg_ParseTuple(args
,(char *)"Oi:Point_setX",&obj0
,&arg2
)) goto fail
;
6912 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6915 Py_INCREF(Py_None
); resultobj
= Py_None
;
6922 static PyObject
*_wrap_Point_x(PyObject
*self
, PyObject
*args
) {
6923 PyObject
*resultobj
;
6924 otk::Point
*arg1
= (otk::Point
*) 0 ;
6926 PyObject
* obj0
= 0 ;
6928 if(!PyArg_ParseTuple(args
,(char *)"O:Point_x",&obj0
)) goto fail
;
6929 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6930 result
= (int)((otk::Point
const *)arg1
)->x();
6932 resultobj
= PyInt_FromLong((long)result
);
6939 static PyObject
*_wrap_Point_setY(PyObject
*self
, PyObject
*args
) {
6940 PyObject
*resultobj
;
6941 otk::Point
*arg1
= (otk::Point
*) 0 ;
6943 PyObject
* obj0
= 0 ;
6945 if(!PyArg_ParseTuple(args
,(char *)"Oi:Point_setY",&obj0
,&arg2
)) goto fail
;
6946 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6949 Py_INCREF(Py_None
); resultobj
= Py_None
;
6956 static PyObject
*_wrap_Point_y(PyObject
*self
, PyObject
*args
) {
6957 PyObject
*resultobj
;
6958 otk::Point
*arg1
= (otk::Point
*) 0 ;
6960 PyObject
* obj0
= 0 ;
6962 if(!PyArg_ParseTuple(args
,(char *)"O:Point_y",&obj0
)) goto fail
;
6963 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6964 result
= (int)((otk::Point
const *)arg1
)->y();
6966 resultobj
= PyInt_FromLong((long)result
);
6973 static PyObject
*_wrap_Point_setPoint(PyObject
*self
, PyObject
*args
) {
6974 PyObject
*resultobj
;
6975 otk::Point
*arg1
= (otk::Point
*) 0 ;
6978 PyObject
* obj0
= 0 ;
6980 if(!PyArg_ParseTuple(args
,(char *)"Oii:Point_setPoint",&obj0
,&arg2
,&arg3
)) goto fail
;
6981 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6982 (arg1
)->setPoint(arg2
,arg3
);
6984 Py_INCREF(Py_None
); resultobj
= Py_None
;
6991 static PyObject
*_wrap_delete_Point(PyObject
*self
, PyObject
*args
) {
6992 PyObject
*resultobj
;
6993 otk::Point
*arg1
= (otk::Point
*) 0 ;
6994 PyObject
* obj0
= 0 ;
6996 if(!PyArg_ParseTuple(args
,(char *)"O:delete_Point",&obj0
)) goto fail
;
6997 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7000 Py_INCREF(Py_None
); resultobj
= Py_None
;
7007 static PyObject
* Point_swigregister(PyObject
*self
, PyObject
*args
) {
7009 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
7010 SWIG_TypeClientData(SWIGTYPE_p_otk__Point
, obj
);
7012 return Py_BuildValue((char *)"");
7014 static PyObject
*_wrap_new_OBProperty(PyObject
*self
, PyObject
*args
) {
7015 PyObject
*resultobj
;
7016 otk::OBProperty
*result
;
7018 if(!PyArg_ParseTuple(args
,(char *)":new_OBProperty")) goto fail
;
7019 result
= (otk::OBProperty
*)new otk::OBProperty();
7021 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__OBProperty
, 1);
7028 static PyObject
*_wrap_delete_OBProperty(PyObject
*self
, PyObject
*args
) {
7029 PyObject
*resultobj
;
7030 otk::OBProperty
*arg1
= (otk::OBProperty
*) 0 ;
7031 PyObject
* obj0
= 0 ;
7033 if(!PyArg_ParseTuple(args
,(char *)"O:delete_OBProperty",&obj0
)) goto fail
;
7034 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBProperty
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7037 Py_INCREF(Py_None
); resultobj
= Py_None
;
7044 static PyObject
*_wrap_OBProperty_set__SWIG_0(PyObject
*self
, PyObject
*args
) {
7045 PyObject
*resultobj
;
7046 otk::OBProperty
*arg1
= (otk::OBProperty
*) 0 ;
7050 unsigned long arg5
;
7052 PyObject
* obj0
= 0 ;
7053 PyObject
* obj1
= 0 ;
7054 PyObject
* obj4
= 0 ;
7056 if(!PyArg_ParseTuple(args
,(char *)"OOiiO:OBProperty_set",&obj0
,&obj1
,&arg3
,&arg4
,&obj4
)) goto fail
;
7057 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBProperty
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7058 if ((SWIG_ConvertPtr(obj1
,(void **) &argp2
, SWIGTYPE_p_Window
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
7060 arg5
= (unsigned long) PyInt_AsLong(obj4
);
7061 if (PyErr_Occurred()) SWIG_fail
;
7062 ((otk::OBProperty
const *)arg1
)->set(arg2
,(otk::OBProperty::Atoms
)arg3
,(otk::OBProperty::Atoms
)arg4
,arg5
);
7064 Py_INCREF(Py_None
); resultobj
= Py_None
;
7071 static PyObject
*_wrap_OBProperty_set__SWIG_1(PyObject
*self
, PyObject
*args
) {
7072 PyObject
*resultobj
;
7073 otk::OBProperty
*arg1
= (otk::OBProperty
*) 0 ;
7077 unsigned long *arg5
;
7080 PyObject
* obj0
= 0 ;
7081 PyObject
* obj1
= 0 ;
7082 PyObject
* obj4
= 0 ;
7084 if(!PyArg_ParseTuple(args
,(char *)"OOiiOi:OBProperty_set",&obj0
,&obj1
,&arg3
,&arg4
,&obj4
,&arg6
)) goto fail
;
7085 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBProperty
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7086 if ((SWIG_ConvertPtr(obj1
,(void **) &argp2
, SWIGTYPE_p_Window
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
7088 if ((SWIG_ConvertPtr(obj4
,(void **) &arg5
, SWIGTYPE_p_unsigned_long
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7089 ((otk::OBProperty
const *)arg1
)->set(arg2
,(otk::OBProperty::Atoms
)arg3
,(otk::OBProperty::Atoms
)arg4
,arg5
,arg6
);
7091 Py_INCREF(Py_None
); resultobj
= Py_None
;
7098 static PyObject
*_wrap_OBProperty_set__SWIG_2(PyObject
*self
, PyObject
*args
) {
7099 PyObject
*resultobj
;
7100 otk::OBProperty
*arg1
= (otk::OBProperty
*) 0 ;
7104 std::string
*arg5
= 0 ;
7107 PyObject
* obj0
= 0 ;
7108 PyObject
* obj1
= 0 ;
7109 PyObject
* obj4
= 0 ;
7111 if(!PyArg_ParseTuple(args
,(char *)"OOiiO:OBProperty_set",&obj0
,&obj1
,&arg3
,&arg4
,&obj4
)) goto fail
;
7112 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBProperty
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7113 if ((SWIG_ConvertPtr(obj1
,(void **) &argp2
, SWIGTYPE_p_Window
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
7116 if (PyString_Check(obj4
)) {
7117 temp5
= std::string(PyString_AsString(obj4
));
7120 SWIG_exception(SWIG_TypeError
, "string expected");
7123 ((otk::OBProperty
const *)arg1
)->set(arg2
,(otk::OBProperty::Atoms
)arg3
,(otk::OBProperty::StringType
)arg4
,(std::string
const &)*arg5
);
7125 Py_INCREF(Py_None
); resultobj
= Py_None
;
7132 static PyObject
*_wrap_OBProperty_set__SWIG_3(PyObject
*self
, PyObject
*args
) {
7133 PyObject
*resultobj
;
7134 otk::OBProperty
*arg1
= (otk::OBProperty
*) 0 ;
7138 otk::OBProperty::StringVect
*arg5
= 0 ;
7140 PyObject
* obj0
= 0 ;
7141 PyObject
* obj1
= 0 ;
7142 PyObject
* obj4
= 0 ;
7144 if(!PyArg_ParseTuple(args
,(char *)"OOiiO:OBProperty_set",&obj0
,&obj1
,&arg3
,&arg4
,&obj4
)) goto fail
;
7145 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBProperty
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7146 if ((SWIG_ConvertPtr(obj1
,(void **) &argp2
, SWIGTYPE_p_Window
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
7148 if ((SWIG_ConvertPtr(obj4
,(void **) &arg5
, SWIGTYPE_p_otk__OBProperty__StringVect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7150 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
7152 ((otk::OBProperty
const *)arg1
)->set(arg2
,(otk::OBProperty::Atoms
)arg3
,(otk::OBProperty::StringType
)arg4
,(otk::OBProperty::StringVect
const &)*arg5
);
7154 Py_INCREF(Py_None
); resultobj
= Py_None
;
7161 static PyObject
*_wrap_OBProperty_set(PyObject
*self
, PyObject
*args
) {
7166 argc
= PyObject_Length(args
);
7167 for (ii
= 0; (ii
< argc
) && (ii
< 6); ii
++) {
7168 argv
[ii
] = PyTuple_GetItem(args
,ii
);
7174 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OBProperty
, 0) == -1) {
7184 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_Window
, 0) == -1) {
7193 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
7197 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
7202 if (SWIG_ConvertPtr(argv
[4], (void **) &ptr
, SWIGTYPE_p_otk__OBProperty__StringVect
, 0) == -1) {
7210 return _wrap_OBProperty_set__SWIG_3(self
,args
);
7221 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OBProperty
, 0) == -1) {
7231 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_Window
, 0) == -1) {
7240 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
7244 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
7248 _v
= (PyInt_Check(argv
[4]) || PyLong_Check(argv
[4])) ? 1 : 0;
7251 return _wrap_OBProperty_set__SWIG_0(self
,args
);
7262 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OBProperty
, 0) == -1) {
7272 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_Window
, 0) == -1) {
7281 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
7285 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
7289 _v
= PyString_Check(argv
[4]) ? 1 : 0;
7292 return _wrap_OBProperty_set__SWIG_2(self
,args
);
7303 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OBProperty
, 0) == -1) {
7313 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_Window
, 0) == -1) {
7322 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
7326 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
7331 if (SWIG_ConvertPtr(argv
[4], (void **) &ptr
, SWIGTYPE_p_unsigned_long
, 0) == -1) {
7340 _v
= (PyInt_Check(argv
[5]) || PyLong_Check(argv
[5])) ? 1 : 0;
7343 return _wrap_OBProperty_set__SWIG_1(self
,args
);
7352 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'OBProperty_set'");
7357 static PyObject
*_wrap_OBProperty_get__SWIG_0(PyObject
*self
, PyObject
*args
) {
7358 PyObject
*resultobj
;
7359 otk::OBProperty
*arg1
= (otk::OBProperty
*) 0 ;
7363 unsigned long *arg5
= (unsigned long *) 0 ;
7364 unsigned long **arg6
= (unsigned long **) 0 ;
7367 PyObject
* obj0
= 0 ;
7368 PyObject
* obj1
= 0 ;
7369 PyObject
* obj4
= 0 ;
7370 PyObject
* obj5
= 0 ;
7372 if(!PyArg_ParseTuple(args
,(char *)"OOiiOO:OBProperty_get",&obj0
,&obj1
,&arg3
,&arg4
,&obj4
,&obj5
)) goto fail
;
7373 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBProperty
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7374 if ((SWIG_ConvertPtr(obj1
,(void **) &argp2
, SWIGTYPE_p_Window
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
7376 if ((SWIG_ConvertPtr(obj4
,(void **) &arg5
, SWIGTYPE_p_unsigned_long
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7377 if ((SWIG_ConvertPtr(obj5
,(void **) &arg6
, SWIGTYPE_p_p_unsigned_long
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7378 result
= (bool)((otk::OBProperty
const *)arg1
)->get(arg2
,(otk::OBProperty::Atoms
)arg3
,(otk::OBProperty::Atoms
)arg4
,arg5
,arg6
);
7380 resultobj
= PyInt_FromLong((long)result
);
7387 static PyObject
*_wrap_OBProperty_get__SWIG_1(PyObject
*self
, PyObject
*args
) {
7388 PyObject
*resultobj
;
7389 otk::OBProperty
*arg1
= (otk::OBProperty
*) 0 ;
7393 unsigned long *arg5
= (unsigned long *) 0 ;
7396 PyObject
* obj0
= 0 ;
7397 PyObject
* obj1
= 0 ;
7398 PyObject
* obj4
= 0 ;
7400 if(!PyArg_ParseTuple(args
,(char *)"OOiiO:OBProperty_get",&obj0
,&obj1
,&arg3
,&arg4
,&obj4
)) goto fail
;
7401 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBProperty
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7402 if ((SWIG_ConvertPtr(obj1
,(void **) &argp2
, SWIGTYPE_p_Window
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
7404 if ((SWIG_ConvertPtr(obj4
,(void **) &arg5
, SWIGTYPE_p_unsigned_long
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7405 result
= (bool)((otk::OBProperty
const *)arg1
)->get(arg2
,(otk::OBProperty::Atoms
)arg3
,(otk::OBProperty::Atoms
)arg4
,arg5
);
7407 resultobj
= PyInt_FromLong((long)result
);
7414 static PyObject
*_wrap_OBProperty_get__SWIG_2(PyObject
*self
, PyObject
*args
) {
7415 PyObject
*resultobj
;
7416 otk::OBProperty
*arg1
= (otk::OBProperty
*) 0 ;
7420 std::string
*arg5
= (std::string
*) 0 ;
7423 PyObject
* obj0
= 0 ;
7424 PyObject
* obj1
= 0 ;
7425 PyObject
* obj4
= 0 ;
7427 if(!PyArg_ParseTuple(args
,(char *)"OOiiO:OBProperty_get",&obj0
,&obj1
,&arg3
,&arg4
,&obj4
)) goto fail
;
7428 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBProperty
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7429 if ((SWIG_ConvertPtr(obj1
,(void **) &argp2
, SWIGTYPE_p_Window
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
7431 if ((SWIG_ConvertPtr(obj4
,(void **) &arg5
, SWIGTYPE_p_std__string
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7432 result
= (bool)((otk::OBProperty
const *)arg1
)->get(arg2
,(otk::OBProperty::Atoms
)arg3
,(otk::OBProperty::StringType
)arg4
,arg5
);
7434 resultobj
= PyInt_FromLong((long)result
);
7441 static PyObject
*_wrap_OBProperty_get__SWIG_3(PyObject
*self
, PyObject
*args
) {
7442 PyObject
*resultobj
;
7443 otk::OBProperty
*arg1
= (otk::OBProperty
*) 0 ;
7447 unsigned long *arg5
= (unsigned long *) 0 ;
7448 otk::OBProperty::StringVect
*arg6
= (otk::OBProperty::StringVect
*) 0 ;
7451 PyObject
* obj0
= 0 ;
7452 PyObject
* obj1
= 0 ;
7453 PyObject
* obj4
= 0 ;
7454 PyObject
* obj5
= 0 ;
7456 if(!PyArg_ParseTuple(args
,(char *)"OOiiOO:OBProperty_get",&obj0
,&obj1
,&arg3
,&arg4
,&obj4
,&obj5
)) goto fail
;
7457 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBProperty
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7458 if ((SWIG_ConvertPtr(obj1
,(void **) &argp2
, SWIGTYPE_p_Window
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
7460 if ((SWIG_ConvertPtr(obj4
,(void **) &arg5
, SWIGTYPE_p_unsigned_long
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7461 if ((SWIG_ConvertPtr(obj5
,(void **) &arg6
, SWIGTYPE_p_otk__OBProperty__StringVect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7462 result
= (bool)((otk::OBProperty
const *)arg1
)->get(arg2
,(otk::OBProperty::Atoms
)arg3
,(otk::OBProperty::StringType
)arg4
,arg5
,arg6
);
7464 resultobj
= PyInt_FromLong((long)result
);
7471 static PyObject
*_wrap_OBProperty_get(PyObject
*self
, PyObject
*args
) {
7476 argc
= PyObject_Length(args
);
7477 for (ii
= 0; (ii
< argc
) && (ii
< 6); ii
++) {
7478 argv
[ii
] = PyTuple_GetItem(args
,ii
);
7484 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OBProperty
, 0) == -1) {
7494 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_Window
, 0) == -1) {
7503 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
7507 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
7512 if (SWIG_ConvertPtr(argv
[4], (void **) &ptr
, SWIGTYPE_p_unsigned_long
, 0) == -1) {
7520 return _wrap_OBProperty_get__SWIG_1(self
,args
);
7531 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OBProperty
, 0) == -1) {
7541 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_Window
, 0) == -1) {
7550 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
7554 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
7559 if (SWIG_ConvertPtr(argv
[4], (void **) &ptr
, SWIGTYPE_p_std__string
, 0) == -1) {
7567 return _wrap_OBProperty_get__SWIG_2(self
,args
);
7578 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OBProperty
, 0) == -1) {
7588 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_Window
, 0) == -1) {
7597 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
7601 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
7606 if (SWIG_ConvertPtr(argv
[4], (void **) &ptr
, SWIGTYPE_p_unsigned_long
, 0) == -1) {
7616 if (SWIG_ConvertPtr(argv
[5], (void **) &ptr
, SWIGTYPE_p_p_unsigned_long
, 0) == -1) {
7624 return _wrap_OBProperty_get__SWIG_0(self
,args
);
7636 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OBProperty
, 0) == -1) {
7646 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_Window
, 0) == -1) {
7655 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
7659 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
7664 if (SWIG_ConvertPtr(argv
[4], (void **) &ptr
, SWIGTYPE_p_unsigned_long
, 0) == -1) {
7674 if (SWIG_ConvertPtr(argv
[5], (void **) &ptr
, SWIGTYPE_p_otk__OBProperty__StringVect
, 0) == -1) {
7682 return _wrap_OBProperty_get__SWIG_3(self
,args
);
7691 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'OBProperty_get'");
7696 static PyObject
*_wrap_OBProperty_erase(PyObject
*self
, PyObject
*args
) {
7697 PyObject
*resultobj
;
7698 otk::OBProperty
*arg1
= (otk::OBProperty
*) 0 ;
7702 PyObject
* obj0
= 0 ;
7703 PyObject
* obj1
= 0 ;
7705 if(!PyArg_ParseTuple(args
,(char *)"OOi:OBProperty_erase",&obj0
,&obj1
,&arg3
)) goto fail
;
7706 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBProperty
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7707 if ((SWIG_ConvertPtr(obj1
,(void **) &argp2
, SWIGTYPE_p_Window
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
7709 ((otk::OBProperty
const *)arg1
)->erase(arg2
,(otk::OBProperty::Atoms
)arg3
);
7711 Py_INCREF(Py_None
); resultobj
= Py_None
;
7718 static PyObject
*_wrap_OBProperty_atom(PyObject
*self
, PyObject
*args
) {
7719 PyObject
*resultobj
;
7720 otk::OBProperty
*arg1
= (otk::OBProperty
*) 0 ;
7723 PyObject
* obj0
= 0 ;
7725 if(!PyArg_ParseTuple(args
,(char *)"Oi:OBProperty_atom",&obj0
,&arg2
)) goto fail
;
7726 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBProperty
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7727 result
= ((otk::OBProperty
const *)arg1
)->atom((otk::OBProperty::Atoms
)arg2
);
7731 resultptr
= new Atom((Atom
&) result
);
7732 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_Atom
, 1);
7740 static PyObject
* OBProperty_swigregister(PyObject
*self
, PyObject
*args
) {
7742 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
7743 SWIG_TypeClientData(SWIGTYPE_p_otk__OBProperty
, obj
);
7745 return Py_BuildValue((char *)"");
7747 static PyObject
*_wrap_new_Rect__SWIG_0(PyObject
*self
, PyObject
*args
) {
7748 PyObject
*resultobj
;
7751 if(!PyArg_ParseTuple(args
,(char *)":new_Rect")) goto fail
;
7752 result
= (otk::Rect
*)new otk::Rect();
7754 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Rect
, 1);
7761 static PyObject
*_wrap_new_Rect__SWIG_1(PyObject
*self
, PyObject
*args
) {
7762 PyObject
*resultobj
;
7769 if(!PyArg_ParseTuple(args
,(char *)"iiii:new_Rect",&arg1
,&arg2
,&arg3
,&arg4
)) goto fail
;
7770 result
= (otk::Rect
*)new otk::Rect(arg1
,arg2
,arg3
,arg4
);
7772 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Rect
, 1);
7779 static PyObject
*_wrap_new_Rect__SWIG_2(PyObject
*self
, PyObject
*args
) {
7780 PyObject
*resultobj
;
7781 otk::Point
*arg1
= 0 ;
7782 otk::Point
*arg2
= 0 ;
7784 PyObject
* obj0
= 0 ;
7785 PyObject
* obj1
= 0 ;
7787 if(!PyArg_ParseTuple(args
,(char *)"OO:new_Rect",&obj0
,&obj1
)) goto fail
;
7788 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7790 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
7792 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7794 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
7796 result
= (otk::Rect
*)new otk::Rect((otk::Point
const &)*arg1
,(otk::Point
const &)*arg2
);
7798 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Rect
, 1);
7805 static PyObject
*_wrap_new_Rect__SWIG_3(PyObject
*self
, PyObject
*args
) {
7806 PyObject
*resultobj
;
7807 otk::Rect
*arg1
= 0 ;
7809 PyObject
* obj0
= 0 ;
7811 if(!PyArg_ParseTuple(args
,(char *)"O:new_Rect",&obj0
)) goto fail
;
7812 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7814 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
7816 result
= (otk::Rect
*)new otk::Rect((otk::Rect
const &)*arg1
);
7818 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Rect
, 1);
7825 static PyObject
*_wrap_new_Rect__SWIG_4(PyObject
*self
, PyObject
*args
) {
7826 PyObject
*resultobj
;
7827 XRectangle
*arg1
= 0 ;
7829 PyObject
* obj0
= 0 ;
7831 if(!PyArg_ParseTuple(args
,(char *)"O:new_Rect",&obj0
)) goto fail
;
7832 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_XRectangle
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7834 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
7836 result
= (otk::Rect
*)new otk::Rect((XRectangle
const &)*arg1
);
7838 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Rect
, 1);
7845 static PyObject
*_wrap_new_Rect(PyObject
*self
, PyObject
*args
) {
7850 argc
= PyObject_Length(args
);
7851 for (ii
= 0; (ii
< argc
) && (ii
< 4); ii
++) {
7852 argv
[ii
] = PyTuple_GetItem(args
,ii
);
7855 return _wrap_new_Rect__SWIG_0(self
,args
);
7861 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
7869 return _wrap_new_Rect__SWIG_3(self
,args
);
7876 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_XRectangle
, 0) == -1) {
7884 return _wrap_new_Rect__SWIG_4(self
,args
);
7891 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Point
, 0) == -1) {
7901 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_otk__Point
, 0) == -1) {
7909 return _wrap_new_Rect__SWIG_2(self
,args
);
7916 _v
= (PyInt_Check(argv
[0]) || PyLong_Check(argv
[0])) ? 1 : 0;
7920 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
7924 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
7928 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
7931 return _wrap_new_Rect__SWIG_1(self
,args
);
7938 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'new_Rect'");
7943 static PyObject
*_wrap_Rect_left(PyObject
*self
, PyObject
*args
) {
7944 PyObject
*resultobj
;
7945 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
7947 PyObject
* obj0
= 0 ;
7949 if(!PyArg_ParseTuple(args
,(char *)"O:Rect_left",&obj0
)) goto fail
;
7950 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7951 result
= (int)((otk::Rect
const *)arg1
)->left();
7953 resultobj
= PyInt_FromLong((long)result
);
7960 static PyObject
*_wrap_Rect_top(PyObject
*self
, PyObject
*args
) {
7961 PyObject
*resultobj
;
7962 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
7964 PyObject
* obj0
= 0 ;
7966 if(!PyArg_ParseTuple(args
,(char *)"O:Rect_top",&obj0
)) goto fail
;
7967 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7968 result
= (int)((otk::Rect
const *)arg1
)->top();
7970 resultobj
= PyInt_FromLong((long)result
);
7977 static PyObject
*_wrap_Rect_right(PyObject
*self
, PyObject
*args
) {
7978 PyObject
*resultobj
;
7979 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
7981 PyObject
* obj0
= 0 ;
7983 if(!PyArg_ParseTuple(args
,(char *)"O:Rect_right",&obj0
)) goto fail
;
7984 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7985 result
= (int)((otk::Rect
const *)arg1
)->right();
7987 resultobj
= PyInt_FromLong((long)result
);
7994 static PyObject
*_wrap_Rect_bottom(PyObject
*self
, PyObject
*args
) {
7995 PyObject
*resultobj
;
7996 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
7998 PyObject
* obj0
= 0 ;
8000 if(!PyArg_ParseTuple(args
,(char *)"O:Rect_bottom",&obj0
)) goto fail
;
8001 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8002 result
= (int)((otk::Rect
const *)arg1
)->bottom();
8004 resultobj
= PyInt_FromLong((long)result
);
8011 static PyObject
*_wrap_Rect_x(PyObject
*self
, PyObject
*args
) {
8012 PyObject
*resultobj
;
8013 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8015 PyObject
* obj0
= 0 ;
8017 if(!PyArg_ParseTuple(args
,(char *)"O:Rect_x",&obj0
)) goto fail
;
8018 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8019 result
= (int)((otk::Rect
const *)arg1
)->x();
8021 resultobj
= PyInt_FromLong((long)result
);
8028 static PyObject
*_wrap_Rect_y(PyObject
*self
, PyObject
*args
) {
8029 PyObject
*resultobj
;
8030 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8032 PyObject
* obj0
= 0 ;
8034 if(!PyArg_ParseTuple(args
,(char *)"O:Rect_y",&obj0
)) goto fail
;
8035 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8036 result
= (int)((otk::Rect
const *)arg1
)->y();
8038 resultobj
= PyInt_FromLong((long)result
);
8045 static PyObject
*_wrap_Rect_location(PyObject
*self
, PyObject
*args
) {
8046 PyObject
*resultobj
;
8047 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8049 PyObject
* obj0
= 0 ;
8051 if(!PyArg_ParseTuple(args
,(char *)"O:Rect_location",&obj0
)) goto fail
;
8052 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8053 result
= ((otk::Rect
const *)arg1
)->location();
8056 otk::Point
* resultptr
;
8057 resultptr
= new otk::Point((otk::Point
&) result
);
8058 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_otk__Point
, 1);
8066 static PyObject
*_wrap_Rect_setX(PyObject
*self
, PyObject
*args
) {
8067 PyObject
*resultobj
;
8068 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8070 PyObject
* obj0
= 0 ;
8072 if(!PyArg_ParseTuple(args
,(char *)"Oi:Rect_setX",&obj0
,&arg2
)) goto fail
;
8073 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8076 Py_INCREF(Py_None
); resultobj
= Py_None
;
8083 static PyObject
*_wrap_Rect_setY(PyObject
*self
, PyObject
*args
) {
8084 PyObject
*resultobj
;
8085 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8087 PyObject
* obj0
= 0 ;
8089 if(!PyArg_ParseTuple(args
,(char *)"Oi:Rect_setY",&obj0
,&arg2
)) goto fail
;
8090 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8093 Py_INCREF(Py_None
); resultobj
= Py_None
;
8100 static PyObject
*_wrap_Rect_setPos__SWIG_0(PyObject
*self
, PyObject
*args
) {
8101 PyObject
*resultobj
;
8102 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8105 PyObject
* obj0
= 0 ;
8107 if(!PyArg_ParseTuple(args
,(char *)"Oii:Rect_setPos",&obj0
,&arg2
,&arg3
)) goto fail
;
8108 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8109 (arg1
)->setPos(arg2
,arg3
);
8111 Py_INCREF(Py_None
); resultobj
= Py_None
;
8118 static PyObject
*_wrap_Rect_setPos__SWIG_1(PyObject
*self
, PyObject
*args
) {
8119 PyObject
*resultobj
;
8120 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8121 otk::Point
*arg2
= 0 ;
8122 PyObject
* obj0
= 0 ;
8123 PyObject
* obj1
= 0 ;
8125 if(!PyArg_ParseTuple(args
,(char *)"OO:Rect_setPos",&obj0
,&obj1
)) goto fail
;
8126 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8127 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8129 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
8131 (arg1
)->setPos((otk::Point
const &)*arg2
);
8133 Py_INCREF(Py_None
); resultobj
= Py_None
;
8140 static PyObject
*_wrap_Rect_setPos(PyObject
*self
, PyObject
*args
) {
8145 argc
= PyObject_Length(args
);
8146 for (ii
= 0; (ii
< argc
) && (ii
< 3); ii
++) {
8147 argv
[ii
] = PyTuple_GetItem(args
,ii
);
8153 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
8163 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_otk__Point
, 0) == -1) {
8171 return _wrap_Rect_setPos__SWIG_1(self
,args
);
8179 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
8188 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
8192 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
8195 return _wrap_Rect_setPos__SWIG_0(self
,args
);
8201 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'Rect_setPos'");
8206 static PyObject
*_wrap_Rect_width(PyObject
*self
, PyObject
*args
) {
8207 PyObject
*resultobj
;
8208 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8210 PyObject
* obj0
= 0 ;
8212 if(!PyArg_ParseTuple(args
,(char *)"O:Rect_width",&obj0
)) goto fail
;
8213 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8214 result
= (int)((otk::Rect
const *)arg1
)->width();
8216 resultobj
= PyInt_FromLong((long)result
);
8223 static PyObject
*_wrap_Rect_height(PyObject
*self
, PyObject
*args
) {
8224 PyObject
*resultobj
;
8225 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8227 PyObject
* obj0
= 0 ;
8229 if(!PyArg_ParseTuple(args
,(char *)"O:Rect_height",&obj0
)) goto fail
;
8230 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8231 result
= (int)((otk::Rect
const *)arg1
)->height();
8233 resultobj
= PyInt_FromLong((long)result
);
8240 static PyObject
*_wrap_Rect_size(PyObject
*self
, PyObject
*args
) {
8241 PyObject
*resultobj
;
8242 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8244 PyObject
* obj0
= 0 ;
8246 if(!PyArg_ParseTuple(args
,(char *)"O:Rect_size",&obj0
)) goto fail
;
8247 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8248 result
= ((otk::Rect
const *)arg1
)->size();
8251 otk::Point
* resultptr
;
8252 resultptr
= new otk::Point((otk::Point
&) result
);
8253 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_otk__Point
, 1);
8261 static PyObject
*_wrap_Rect_setWidth(PyObject
*self
, PyObject
*args
) {
8262 PyObject
*resultobj
;
8263 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8265 PyObject
* obj0
= 0 ;
8267 if(!PyArg_ParseTuple(args
,(char *)"Oi:Rect_setWidth",&obj0
,&arg2
)) goto fail
;
8268 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8269 (arg1
)->setWidth(arg2
);
8271 Py_INCREF(Py_None
); resultobj
= Py_None
;
8278 static PyObject
*_wrap_Rect_setHeight(PyObject
*self
, PyObject
*args
) {
8279 PyObject
*resultobj
;
8280 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8282 PyObject
* obj0
= 0 ;
8284 if(!PyArg_ParseTuple(args
,(char *)"Oi:Rect_setHeight",&obj0
,&arg2
)) goto fail
;
8285 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8286 (arg1
)->setHeight(arg2
);
8288 Py_INCREF(Py_None
); resultobj
= Py_None
;
8295 static PyObject
*_wrap_Rect_setSize__SWIG_0(PyObject
*self
, PyObject
*args
) {
8296 PyObject
*resultobj
;
8297 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8300 PyObject
* obj0
= 0 ;
8302 if(!PyArg_ParseTuple(args
,(char *)"Oii:Rect_setSize",&obj0
,&arg2
,&arg3
)) goto fail
;
8303 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8304 (arg1
)->setSize(arg2
,arg3
);
8306 Py_INCREF(Py_None
); resultobj
= Py_None
;
8313 static PyObject
*_wrap_Rect_setSize__SWIG_1(PyObject
*self
, PyObject
*args
) {
8314 PyObject
*resultobj
;
8315 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8316 otk::Point
*arg2
= 0 ;
8317 PyObject
* obj0
= 0 ;
8318 PyObject
* obj1
= 0 ;
8320 if(!PyArg_ParseTuple(args
,(char *)"OO:Rect_setSize",&obj0
,&obj1
)) goto fail
;
8321 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8322 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8324 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
8326 (arg1
)->setSize((otk::Point
const &)*arg2
);
8328 Py_INCREF(Py_None
); resultobj
= Py_None
;
8335 static PyObject
*_wrap_Rect_setSize(PyObject
*self
, PyObject
*args
) {
8340 argc
= PyObject_Length(args
);
8341 for (ii
= 0; (ii
< argc
) && (ii
< 3); ii
++) {
8342 argv
[ii
] = PyTuple_GetItem(args
,ii
);
8348 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
8358 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_otk__Point
, 0) == -1) {
8366 return _wrap_Rect_setSize__SWIG_1(self
,args
);
8374 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
8383 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
8387 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
8390 return _wrap_Rect_setSize__SWIG_0(self
,args
);
8396 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'Rect_setSize'");
8401 static PyObject
*_wrap_Rect_setRect__SWIG_0(PyObject
*self
, PyObject
*args
) {
8402 PyObject
*resultobj
;
8403 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8408 PyObject
* obj0
= 0 ;
8410 if(!PyArg_ParseTuple(args
,(char *)"Oiiii:Rect_setRect",&obj0
,&arg2
,&arg3
,&arg4
,&arg5
)) goto fail
;
8411 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8412 (arg1
)->setRect(arg2
,arg3
,arg4
,arg5
);
8414 Py_INCREF(Py_None
); resultobj
= Py_None
;
8421 static PyObject
*_wrap_Rect_setRect__SWIG_1(PyObject
*self
, PyObject
*args
) {
8422 PyObject
*resultobj
;
8423 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8424 otk::Point
*arg2
= 0 ;
8425 otk::Point
*arg3
= 0 ;
8426 PyObject
* obj0
= 0 ;
8427 PyObject
* obj1
= 0 ;
8428 PyObject
* obj2
= 0 ;
8430 if(!PyArg_ParseTuple(args
,(char *)"OOO:Rect_setRect",&obj0
,&obj1
,&obj2
)) goto fail
;
8431 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8432 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8434 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
8436 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8438 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
8440 (arg1
)->setRect((otk::Point
const &)*arg2
,(otk::Point
const &)*arg3
);
8442 Py_INCREF(Py_None
); resultobj
= Py_None
;
8449 static PyObject
*_wrap_Rect_setRect(PyObject
*self
, PyObject
*args
) {
8454 argc
= PyObject_Length(args
);
8455 for (ii
= 0; (ii
< argc
) && (ii
< 5); ii
++) {
8456 argv
[ii
] = PyTuple_GetItem(args
,ii
);
8462 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
8472 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_otk__Point
, 0) == -1) {
8482 if (SWIG_ConvertPtr(argv
[2], (void **) &ptr
, SWIGTYPE_p_otk__Point
, 0) == -1) {
8490 return _wrap_Rect_setRect__SWIG_1(self
,args
);
8499 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
8508 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
8512 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
8516 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
8520 _v
= (PyInt_Check(argv
[4]) || PyLong_Check(argv
[4])) ? 1 : 0;
8523 return _wrap_Rect_setRect__SWIG_0(self
,args
);
8531 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'Rect_setRect'");
8536 static PyObject
*_wrap_Rect_setCoords__SWIG_0(PyObject
*self
, PyObject
*args
) {
8537 PyObject
*resultobj
;
8538 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8543 PyObject
* obj0
= 0 ;
8545 if(!PyArg_ParseTuple(args
,(char *)"Oiiii:Rect_setCoords",&obj0
,&arg2
,&arg3
,&arg4
,&arg5
)) goto fail
;
8546 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8547 (arg1
)->setCoords(arg2
,arg3
,arg4
,arg5
);
8549 Py_INCREF(Py_None
); resultobj
= Py_None
;
8556 static PyObject
*_wrap_Rect_setCoords__SWIG_1(PyObject
*self
, PyObject
*args
) {
8557 PyObject
*resultobj
;
8558 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8559 otk::Point
*arg2
= 0 ;
8560 otk::Point
*arg3
= 0 ;
8561 PyObject
* obj0
= 0 ;
8562 PyObject
* obj1
= 0 ;
8563 PyObject
* obj2
= 0 ;
8565 if(!PyArg_ParseTuple(args
,(char *)"OOO:Rect_setCoords",&obj0
,&obj1
,&obj2
)) goto fail
;
8566 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8567 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8569 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
8571 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8573 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
8575 (arg1
)->setCoords((otk::Point
const &)*arg2
,(otk::Point
const &)*arg3
);
8577 Py_INCREF(Py_None
); resultobj
= Py_None
;
8584 static PyObject
*_wrap_Rect_setCoords(PyObject
*self
, PyObject
*args
) {
8589 argc
= PyObject_Length(args
);
8590 for (ii
= 0; (ii
< argc
) && (ii
< 5); ii
++) {
8591 argv
[ii
] = PyTuple_GetItem(args
,ii
);
8597 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
8607 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_otk__Point
, 0) == -1) {
8617 if (SWIG_ConvertPtr(argv
[2], (void **) &ptr
, SWIGTYPE_p_otk__Point
, 0) == -1) {
8625 return _wrap_Rect_setCoords__SWIG_1(self
,args
);
8634 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
8643 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
8647 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
8651 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
8655 _v
= (PyInt_Check(argv
[4]) || PyLong_Check(argv
[4])) ? 1 : 0;
8658 return _wrap_Rect_setCoords__SWIG_0(self
,args
);
8666 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'Rect_setCoords'");
8671 static PyObject
*_wrap_Rect_equals(PyObject
*self
, PyObject
*args
) {
8672 PyObject
*resultobj
;
8673 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8674 otk::Rect
*arg2
= 0 ;
8676 PyObject
* obj0
= 0 ;
8677 PyObject
* obj1
= 0 ;
8679 if(!PyArg_ParseTuple(args
,(char *)"OO:Rect_equals",&obj0
,&obj1
)) goto fail
;
8680 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8681 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8683 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
8685 result
= (bool)(arg1
)->operator ==((otk::Rect
const &)*arg2
);
8687 resultobj
= PyInt_FromLong((long)result
);
8694 static PyObject
*_wrap_Rect_valid(PyObject
*self
, PyObject
*args
) {
8695 PyObject
*resultobj
;
8696 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8698 PyObject
* obj0
= 0 ;
8700 if(!PyArg_ParseTuple(args
,(char *)"O:Rect_valid",&obj0
)) goto fail
;
8701 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8702 result
= (bool)((otk::Rect
const *)arg1
)->valid();
8704 resultobj
= PyInt_FromLong((long)result
);
8711 static PyObject
*_wrap_Rect_intersects(PyObject
*self
, PyObject
*args
) {
8712 PyObject
*resultobj
;
8713 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8714 otk::Rect
*arg2
= 0 ;
8716 PyObject
* obj0
= 0 ;
8717 PyObject
* obj1
= 0 ;
8719 if(!PyArg_ParseTuple(args
,(char *)"OO:Rect_intersects",&obj0
,&obj1
)) goto fail
;
8720 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8721 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8723 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
8725 result
= (bool)((otk::Rect
const *)arg1
)->intersects((otk::Rect
const &)*arg2
);
8727 resultobj
= PyInt_FromLong((long)result
);
8734 static PyObject
*_wrap_Rect_contains__SWIG_0(PyObject
*self
, PyObject
*args
) {
8735 PyObject
*resultobj
;
8736 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8740 PyObject
* obj0
= 0 ;
8742 if(!PyArg_ParseTuple(args
,(char *)"Oii:Rect_contains",&obj0
,&arg2
,&arg3
)) goto fail
;
8743 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8744 result
= (bool)((otk::Rect
const *)arg1
)->contains(arg2
,arg3
);
8746 resultobj
= PyInt_FromLong((long)result
);
8753 static PyObject
*_wrap_Rect_contains__SWIG_1(PyObject
*self
, PyObject
*args
) {
8754 PyObject
*resultobj
;
8755 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8756 otk::Point
*arg2
= 0 ;
8758 PyObject
* obj0
= 0 ;
8759 PyObject
* obj1
= 0 ;
8761 if(!PyArg_ParseTuple(args
,(char *)"OO:Rect_contains",&obj0
,&obj1
)) goto fail
;
8762 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8763 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8765 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
8767 result
= (bool)((otk::Rect
const *)arg1
)->contains((otk::Point
const &)*arg2
);
8769 resultobj
= PyInt_FromLong((long)result
);
8776 static PyObject
*_wrap_Rect_contains__SWIG_2(PyObject
*self
, PyObject
*args
) {
8777 PyObject
*resultobj
;
8778 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8779 otk::Rect
*arg2
= 0 ;
8781 PyObject
* obj0
= 0 ;
8782 PyObject
* obj1
= 0 ;
8784 if(!PyArg_ParseTuple(args
,(char *)"OO:Rect_contains",&obj0
,&obj1
)) goto fail
;
8785 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8786 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8788 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
8790 result
= (bool)((otk::Rect
const *)arg1
)->contains((otk::Rect
const &)*arg2
);
8792 resultobj
= PyInt_FromLong((long)result
);
8799 static PyObject
*_wrap_Rect_contains(PyObject
*self
, PyObject
*args
) {
8804 argc
= PyObject_Length(args
);
8805 for (ii
= 0; (ii
< argc
) && (ii
< 3); ii
++) {
8806 argv
[ii
] = PyTuple_GetItem(args
,ii
);
8812 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
8822 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_otk__Point
, 0) == -1) {
8830 return _wrap_Rect_contains__SWIG_1(self
,args
);
8838 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
8848 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
8856 return _wrap_Rect_contains__SWIG_2(self
,args
);
8864 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
8873 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
8877 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
8880 return _wrap_Rect_contains__SWIG_0(self
,args
);
8886 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'Rect_contains'");
8891 static PyObject
*_wrap_delete_Rect(PyObject
*self
, PyObject
*args
) {
8892 PyObject
*resultobj
;
8893 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
8894 PyObject
* obj0
= 0 ;
8896 if(!PyArg_ParseTuple(args
,(char *)"O:delete_Rect",&obj0
)) goto fail
;
8897 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8900 Py_INCREF(Py_None
); resultobj
= Py_None
;
8907 static PyObject
* Rect_swigregister(PyObject
*self
, PyObject
*args
) {
8909 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
8910 SWIG_TypeClientData(SWIGTYPE_p_otk__Rect
, obj
);
8912 return Py_BuildValue((char *)"");
8914 static PyObject
*_wrap_new_ScreenInfo(PyObject
*self
, PyObject
*args
) {
8915 PyObject
*resultobj
;
8917 otk::ScreenInfo
*result
;
8918 PyObject
* obj0
= 0 ;
8920 if(!PyArg_ParseTuple(args
,(char *)"O:new_ScreenInfo",&obj0
)) goto fail
;
8921 arg1
= (unsigned int) PyInt_AsLong(obj0
);
8922 if (PyErr_Occurred()) SWIG_fail
;
8923 result
= (otk::ScreenInfo
*)new otk::ScreenInfo(arg1
);
8925 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__ScreenInfo
, 1);
8932 static PyObject
*_wrap_ScreenInfo_visual(PyObject
*self
, PyObject
*args
) {
8933 PyObject
*resultobj
;
8934 otk::ScreenInfo
*arg1
= (otk::ScreenInfo
*) 0 ;
8936 PyObject
* obj0
= 0 ;
8938 if(!PyArg_ParseTuple(args
,(char *)"O:ScreenInfo_visual",&obj0
)) goto fail
;
8939 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__ScreenInfo
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8940 result
= (Visual
*)((otk::ScreenInfo
const *)arg1
)->visual();
8942 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_Visual
, 0);
8949 static PyObject
*_wrap_ScreenInfo_rootWindow(PyObject
*self
, PyObject
*args
) {
8950 PyObject
*resultobj
;
8951 otk::ScreenInfo
*arg1
= (otk::ScreenInfo
*) 0 ;
8953 PyObject
* obj0
= 0 ;
8955 if(!PyArg_ParseTuple(args
,(char *)"O:ScreenInfo_rootWindow",&obj0
)) goto fail
;
8956 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__ScreenInfo
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8957 result
= ((otk::ScreenInfo
const *)arg1
)->rootWindow();
8961 resultptr
= new Window((Window
&) result
);
8962 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_Window
, 1);
8970 static PyObject
*_wrap_ScreenInfo_colormap(PyObject
*self
, PyObject
*args
) {
8971 PyObject
*resultobj
;
8972 otk::ScreenInfo
*arg1
= (otk::ScreenInfo
*) 0 ;
8974 PyObject
* obj0
= 0 ;
8976 if(!PyArg_ParseTuple(args
,(char *)"O:ScreenInfo_colormap",&obj0
)) goto fail
;
8977 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__ScreenInfo
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8978 result
= ((otk::ScreenInfo
const *)arg1
)->colormap();
8981 Colormap
* resultptr
;
8982 resultptr
= new Colormap((Colormap
&) result
);
8983 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_Colormap
, 1);
8991 static PyObject
*_wrap_ScreenInfo_depth(PyObject
*self
, PyObject
*args
) {
8992 PyObject
*resultobj
;
8993 otk::ScreenInfo
*arg1
= (otk::ScreenInfo
*) 0 ;
8995 PyObject
* obj0
= 0 ;
8997 if(!PyArg_ParseTuple(args
,(char *)"O:ScreenInfo_depth",&obj0
)) goto fail
;
8998 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__ScreenInfo
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8999 result
= (int)((otk::ScreenInfo
const *)arg1
)->depth();
9001 resultobj
= PyInt_FromLong((long)result
);
9008 static PyObject
*_wrap_ScreenInfo_screen(PyObject
*self
, PyObject
*args
) {
9009 PyObject
*resultobj
;
9010 otk::ScreenInfo
*arg1
= (otk::ScreenInfo
*) 0 ;
9011 unsigned int result
;
9012 PyObject
* obj0
= 0 ;
9014 if(!PyArg_ParseTuple(args
,(char *)"O:ScreenInfo_screen",&obj0
)) goto fail
;
9015 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__ScreenInfo
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9016 result
= (unsigned int)((otk::ScreenInfo
const *)arg1
)->screen();
9018 resultobj
= PyInt_FromLong((long)result
);
9025 static PyObject
*_wrap_ScreenInfo_rect(PyObject
*self
, PyObject
*args
) {
9026 PyObject
*resultobj
;
9027 otk::ScreenInfo
*arg1
= (otk::ScreenInfo
*) 0 ;
9029 PyObject
* obj0
= 0 ;
9031 if(!PyArg_ParseTuple(args
,(char *)"O:ScreenInfo_rect",&obj0
)) goto fail
;
9032 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__ScreenInfo
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9034 otk::Rect
const &_result_ref
= ((otk::ScreenInfo
const *)arg1
)->rect();
9035 result
= (otk::Rect
*) &_result_ref
;
9038 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Rect
, 0);
9045 static PyObject
*_wrap_ScreenInfo_width(PyObject
*self
, PyObject
*args
) {
9046 PyObject
*resultobj
;
9047 otk::ScreenInfo
*arg1
= (otk::ScreenInfo
*) 0 ;
9048 unsigned int result
;
9049 PyObject
* obj0
= 0 ;
9051 if(!PyArg_ParseTuple(args
,(char *)"O:ScreenInfo_width",&obj0
)) goto fail
;
9052 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__ScreenInfo
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9053 result
= (unsigned int)((otk::ScreenInfo
const *)arg1
)->width();
9055 resultobj
= PyInt_FromLong((long)result
);
9062 static PyObject
*_wrap_ScreenInfo_height(PyObject
*self
, PyObject
*args
) {
9063 PyObject
*resultobj
;
9064 otk::ScreenInfo
*arg1
= (otk::ScreenInfo
*) 0 ;
9065 unsigned int result
;
9066 PyObject
* obj0
= 0 ;
9068 if(!PyArg_ParseTuple(args
,(char *)"O:ScreenInfo_height",&obj0
)) goto fail
;
9069 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__ScreenInfo
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9070 result
= (unsigned int)((otk::ScreenInfo
const *)arg1
)->height();
9072 resultobj
= PyInt_FromLong((long)result
);
9079 static PyObject
*_wrap_ScreenInfo_displayString(PyObject
*self
, PyObject
*args
) {
9080 PyObject
*resultobj
;
9081 otk::ScreenInfo
*arg1
= (otk::ScreenInfo
*) 0 ;
9082 std::string
*result
;
9083 PyObject
* obj0
= 0 ;
9085 if(!PyArg_ParseTuple(args
,(char *)"O:ScreenInfo_displayString",&obj0
)) goto fail
;
9086 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__ScreenInfo
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9088 std::string
const &_result_ref
= ((otk::ScreenInfo
const *)arg1
)->displayString();
9089 result
= (std::string
*) &_result_ref
;
9093 resultobj
= PyString_FromString(result
->c_str());
9101 static PyObject
*_wrap_delete_ScreenInfo(PyObject
*self
, PyObject
*args
) {
9102 PyObject
*resultobj
;
9103 otk::ScreenInfo
*arg1
= (otk::ScreenInfo
*) 0 ;
9104 PyObject
* obj0
= 0 ;
9106 if(!PyArg_ParseTuple(args
,(char *)"O:delete_ScreenInfo",&obj0
)) goto fail
;
9107 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__ScreenInfo
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9110 Py_INCREF(Py_None
); resultobj
= Py_None
;
9117 static PyObject
* ScreenInfo_swigregister(PyObject
*self
, PyObject
*args
) {
9119 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
9120 SWIG_TypeClientData(SWIGTYPE_p_otk__ScreenInfo
, obj
);
9122 return Py_BuildValue((char *)"");
9124 static PyObject
*_wrap_Strut_top_set(PyObject
*self
, PyObject
*args
) {
9125 PyObject
*resultobj
;
9126 otk::Strut
*arg1
= (otk::Strut
*) 0 ;
9128 PyObject
* obj0
= 0 ;
9129 PyObject
* obj1
= 0 ;
9131 if(!PyArg_ParseTuple(args
,(char *)"OO:Strut_top_set",&obj0
,&obj1
)) goto fail
;
9132 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Strut
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9133 arg2
= (unsigned int) PyInt_AsLong(obj1
);
9134 if (PyErr_Occurred()) SWIG_fail
;
9135 if (arg1
) (arg1
)->top
= arg2
;
9137 Py_INCREF(Py_None
); resultobj
= Py_None
;
9144 static PyObject
*_wrap_Strut_top_get(PyObject
*self
, PyObject
*args
) {
9145 PyObject
*resultobj
;
9146 otk::Strut
*arg1
= (otk::Strut
*) 0 ;
9147 unsigned int result
;
9148 PyObject
* obj0
= 0 ;
9150 if(!PyArg_ParseTuple(args
,(char *)"O:Strut_top_get",&obj0
)) goto fail
;
9151 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Strut
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9152 result
= (unsigned int) ((arg1
)->top
);
9154 resultobj
= PyInt_FromLong((long)result
);
9161 static PyObject
*_wrap_Strut_bottom_set(PyObject
*self
, PyObject
*args
) {
9162 PyObject
*resultobj
;
9163 otk::Strut
*arg1
= (otk::Strut
*) 0 ;
9165 PyObject
* obj0
= 0 ;
9166 PyObject
* obj1
= 0 ;
9168 if(!PyArg_ParseTuple(args
,(char *)"OO:Strut_bottom_set",&obj0
,&obj1
)) goto fail
;
9169 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Strut
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9170 arg2
= (unsigned int) PyInt_AsLong(obj1
);
9171 if (PyErr_Occurred()) SWIG_fail
;
9172 if (arg1
) (arg1
)->bottom
= arg2
;
9174 Py_INCREF(Py_None
); resultobj
= Py_None
;
9181 static PyObject
*_wrap_Strut_bottom_get(PyObject
*self
, PyObject
*args
) {
9182 PyObject
*resultobj
;
9183 otk::Strut
*arg1
= (otk::Strut
*) 0 ;
9184 unsigned int result
;
9185 PyObject
* obj0
= 0 ;
9187 if(!PyArg_ParseTuple(args
,(char *)"O:Strut_bottom_get",&obj0
)) goto fail
;
9188 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Strut
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9189 result
= (unsigned int) ((arg1
)->bottom
);
9191 resultobj
= PyInt_FromLong((long)result
);
9198 static PyObject
*_wrap_Strut_left_set(PyObject
*self
, PyObject
*args
) {
9199 PyObject
*resultobj
;
9200 otk::Strut
*arg1
= (otk::Strut
*) 0 ;
9202 PyObject
* obj0
= 0 ;
9203 PyObject
* obj1
= 0 ;
9205 if(!PyArg_ParseTuple(args
,(char *)"OO:Strut_left_set",&obj0
,&obj1
)) goto fail
;
9206 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Strut
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9207 arg2
= (unsigned int) PyInt_AsLong(obj1
);
9208 if (PyErr_Occurred()) SWIG_fail
;
9209 if (arg1
) (arg1
)->left
= arg2
;
9211 Py_INCREF(Py_None
); resultobj
= Py_None
;
9218 static PyObject
*_wrap_Strut_left_get(PyObject
*self
, PyObject
*args
) {
9219 PyObject
*resultobj
;
9220 otk::Strut
*arg1
= (otk::Strut
*) 0 ;
9221 unsigned int result
;
9222 PyObject
* obj0
= 0 ;
9224 if(!PyArg_ParseTuple(args
,(char *)"O:Strut_left_get",&obj0
)) goto fail
;
9225 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Strut
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9226 result
= (unsigned int) ((arg1
)->left
);
9228 resultobj
= PyInt_FromLong((long)result
);
9235 static PyObject
*_wrap_Strut_right_set(PyObject
*self
, PyObject
*args
) {
9236 PyObject
*resultobj
;
9237 otk::Strut
*arg1
= (otk::Strut
*) 0 ;
9239 PyObject
* obj0
= 0 ;
9240 PyObject
* obj1
= 0 ;
9242 if(!PyArg_ParseTuple(args
,(char *)"OO:Strut_right_set",&obj0
,&obj1
)) goto fail
;
9243 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Strut
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9244 arg2
= (unsigned int) PyInt_AsLong(obj1
);
9245 if (PyErr_Occurred()) SWIG_fail
;
9246 if (arg1
) (arg1
)->right
= arg2
;
9248 Py_INCREF(Py_None
); resultobj
= Py_None
;
9255 static PyObject
*_wrap_Strut_right_get(PyObject
*self
, PyObject
*args
) {
9256 PyObject
*resultobj
;
9257 otk::Strut
*arg1
= (otk::Strut
*) 0 ;
9258 unsigned int result
;
9259 PyObject
* obj0
= 0 ;
9261 if(!PyArg_ParseTuple(args
,(char *)"O:Strut_right_get",&obj0
)) goto fail
;
9262 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Strut
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9263 result
= (unsigned int) ((arg1
)->right
);
9265 resultobj
= PyInt_FromLong((long)result
);
9272 static PyObject
*_wrap_new_Strut__SWIG_0(PyObject
*self
, PyObject
*args
) {
9273 PyObject
*resultobj
;
9276 if(!PyArg_ParseTuple(args
,(char *)":new_Strut")) goto fail
;
9277 result
= (otk::Strut
*)new otk::Strut();
9279 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Strut
, 1);
9286 static PyObject
*_wrap_new_Strut__SWIG_1(PyObject
*self
, PyObject
*args
) {
9287 PyObject
*resultobj
;
9294 if(!PyArg_ParseTuple(args
,(char *)"iiii:new_Strut",&arg1
,&arg2
,&arg3
,&arg4
)) goto fail
;
9295 result
= (otk::Strut
*)new otk::Strut(arg1
,arg2
,arg3
,arg4
);
9297 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Strut
, 1);
9304 static PyObject
*_wrap_new_Strut(PyObject
*self
, PyObject
*args
) {
9309 argc
= PyObject_Length(args
);
9310 for (ii
= 0; (ii
< argc
) && (ii
< 4); ii
++) {
9311 argv
[ii
] = PyTuple_GetItem(args
,ii
);
9314 return _wrap_new_Strut__SWIG_0(self
,args
);
9319 _v
= (PyInt_Check(argv
[0]) || PyLong_Check(argv
[0])) ? 1 : 0;
9323 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
9327 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
9331 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
9334 return _wrap_new_Strut__SWIG_1(self
,args
);
9341 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'new_Strut'");
9346 static PyObject
*_wrap_delete_Strut(PyObject
*self
, PyObject
*args
) {
9347 PyObject
*resultobj
;
9348 otk::Strut
*arg1
= (otk::Strut
*) 0 ;
9349 PyObject
* obj0
= 0 ;
9351 if(!PyArg_ParseTuple(args
,(char *)"O:delete_Strut",&obj0
)) goto fail
;
9352 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Strut
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9355 Py_INCREF(Py_None
); resultobj
= Py_None
;
9362 static PyObject
* Strut_swigregister(PyObject
*self
, PyObject
*args
) {
9364 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
9365 SWIG_TypeClientData(SWIGTYPE_p_otk__Strut
, obj
);
9367 return Py_BuildValue((char *)"");
9369 static PyObject
*_wrap_PixmapMask_mask_set(PyObject
*self
, PyObject
*args
) {
9370 PyObject
*resultobj
;
9371 otk::PixmapMask
*arg1
= (otk::PixmapMask
*) 0 ;
9374 PyObject
* obj0
= 0 ;
9375 PyObject
* obj1
= 0 ;
9377 if(!PyArg_ParseTuple(args
,(char *)"OO:PixmapMask_mask_set",&obj0
,&obj1
)) goto fail
;
9378 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__PixmapMask
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9379 if ((SWIG_ConvertPtr(obj1
,(void **) &argp2
, SWIGTYPE_p_Pixmap
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
9381 if (arg1
) (arg1
)->mask
= arg2
;
9383 Py_INCREF(Py_None
); resultobj
= Py_None
;
9390 static PyObject
*_wrap_PixmapMask_mask_get(PyObject
*self
, PyObject
*args
) {
9391 PyObject
*resultobj
;
9392 otk::PixmapMask
*arg1
= (otk::PixmapMask
*) 0 ;
9394 PyObject
* obj0
= 0 ;
9396 if(!PyArg_ParseTuple(args
,(char *)"O:PixmapMask_mask_get",&obj0
)) goto fail
;
9397 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__PixmapMask
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9398 result
= ((arg1
)->mask
);
9402 resultptr
= new Pixmap((Pixmap
&) result
);
9403 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_Pixmap
, 1);
9411 static PyObject
*_wrap_PixmapMask_w_set(PyObject
*self
, PyObject
*args
) {
9412 PyObject
*resultobj
;
9413 otk::PixmapMask
*arg1
= (otk::PixmapMask
*) 0 ;
9415 PyObject
* obj0
= 0 ;
9416 PyObject
* obj1
= 0 ;
9418 if(!PyArg_ParseTuple(args
,(char *)"OO:PixmapMask_w_set",&obj0
,&obj1
)) goto fail
;
9419 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__PixmapMask
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9420 arg2
= (unsigned int) PyInt_AsLong(obj1
);
9421 if (PyErr_Occurred()) SWIG_fail
;
9422 if (arg1
) (arg1
)->w
= arg2
;
9424 Py_INCREF(Py_None
); resultobj
= Py_None
;
9431 static PyObject
*_wrap_PixmapMask_w_get(PyObject
*self
, PyObject
*args
) {
9432 PyObject
*resultobj
;
9433 otk::PixmapMask
*arg1
= (otk::PixmapMask
*) 0 ;
9434 unsigned int result
;
9435 PyObject
* obj0
= 0 ;
9437 if(!PyArg_ParseTuple(args
,(char *)"O:PixmapMask_w_get",&obj0
)) goto fail
;
9438 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__PixmapMask
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9439 result
= (unsigned int) ((arg1
)->w
);
9441 resultobj
= PyInt_FromLong((long)result
);
9448 static PyObject
*_wrap_PixmapMask_h_set(PyObject
*self
, PyObject
*args
) {
9449 PyObject
*resultobj
;
9450 otk::PixmapMask
*arg1
= (otk::PixmapMask
*) 0 ;
9452 PyObject
* obj0
= 0 ;
9453 PyObject
* obj1
= 0 ;
9455 if(!PyArg_ParseTuple(args
,(char *)"OO:PixmapMask_h_set",&obj0
,&obj1
)) goto fail
;
9456 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__PixmapMask
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9457 arg2
= (unsigned int) PyInt_AsLong(obj1
);
9458 if (PyErr_Occurred()) SWIG_fail
;
9459 if (arg1
) (arg1
)->h
= arg2
;
9461 Py_INCREF(Py_None
); resultobj
= Py_None
;
9468 static PyObject
*_wrap_PixmapMask_h_get(PyObject
*self
, PyObject
*args
) {
9469 PyObject
*resultobj
;
9470 otk::PixmapMask
*arg1
= (otk::PixmapMask
*) 0 ;
9471 unsigned int result
;
9472 PyObject
* obj0
= 0 ;
9474 if(!PyArg_ParseTuple(args
,(char *)"O:PixmapMask_h_get",&obj0
)) goto fail
;
9475 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__PixmapMask
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9476 result
= (unsigned int) ((arg1
)->h
);
9478 resultobj
= PyInt_FromLong((long)result
);
9485 static PyObject
*_wrap_new_PixmapMask(PyObject
*self
, PyObject
*args
) {
9486 PyObject
*resultobj
;
9487 otk::PixmapMask
*result
;
9489 if(!PyArg_ParseTuple(args
,(char *)":new_PixmapMask")) goto fail
;
9490 result
= (otk::PixmapMask
*)new otk::PixmapMask();
9492 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__PixmapMask
, 1);
9499 static PyObject
*_wrap_delete_PixmapMask(PyObject
*self
, PyObject
*args
) {
9500 PyObject
*resultobj
;
9501 otk::PixmapMask
*arg1
= (otk::PixmapMask
*) 0 ;
9502 PyObject
* obj0
= 0 ;
9504 if(!PyArg_ParseTuple(args
,(char *)"O:delete_PixmapMask",&obj0
)) goto fail
;
9505 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__PixmapMask
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9508 Py_INCREF(Py_None
); resultobj
= Py_None
;
9515 static PyObject
* PixmapMask_swigregister(PyObject
*self
, PyObject
*args
) {
9517 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
9518 SWIG_TypeClientData(SWIGTYPE_p_otk__PixmapMask
, obj
);
9520 return Py_BuildValue((char *)"");
9522 static PyObject
*_wrap_Style_image_control_set(PyObject
*self
, PyObject
*args
) {
9523 PyObject
*resultobj
;
9524 otk::Style
*arg1
= (otk::Style
*) 0 ;
9525 otk::BImageControl
*arg2
= (otk::BImageControl
*) 0 ;
9526 PyObject
* obj0
= 0 ;
9527 PyObject
* obj1
= 0 ;
9529 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_image_control_set",&obj0
,&obj1
)) goto fail
;
9530 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9531 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| SWIG_POINTER_DISOWN
)) == -1) SWIG_fail
;
9532 if (arg1
) (arg1
)->image_control
= arg2
;
9534 Py_INCREF(Py_None
); resultobj
= Py_None
;
9541 static PyObject
*_wrap_Style_image_control_get(PyObject
*self
, PyObject
*args
) {
9542 PyObject
*resultobj
;
9543 otk::Style
*arg1
= (otk::Style
*) 0 ;
9544 otk::BImageControl
*result
;
9545 PyObject
* obj0
= 0 ;
9547 if(!PyArg_ParseTuple(args
,(char *)"O:Style_image_control_get",&obj0
)) goto fail
;
9548 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9549 result
= (otk::BImageControl
*) ((arg1
)->image_control
);
9551 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BImageControl
, 0);
9558 static PyObject
*_wrap_Style_l_text_focus_set(PyObject
*self
, PyObject
*args
) {
9559 PyObject
*resultobj
;
9560 otk::Style
*arg1
= (otk::Style
*) 0 ;
9561 otk::BColor
*arg2
= (otk::BColor
*) 0 ;
9562 PyObject
* obj0
= 0 ;
9563 PyObject
* obj1
= 0 ;
9565 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_l_text_focus_set",&obj0
,&obj1
)) goto fail
;
9566 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9567 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9568 if (arg1
) (arg1
)->l_text_focus
= *arg2
;
9570 Py_INCREF(Py_None
); resultobj
= Py_None
;
9577 static PyObject
*_wrap_Style_l_text_focus_get(PyObject
*self
, PyObject
*args
) {
9578 PyObject
*resultobj
;
9579 otk::Style
*arg1
= (otk::Style
*) 0 ;
9580 otk::BColor
*result
;
9581 PyObject
* obj0
= 0 ;
9583 if(!PyArg_ParseTuple(args
,(char *)"O:Style_l_text_focus_get",&obj0
)) goto fail
;
9584 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9585 result
= (otk::BColor
*)& ((arg1
)->l_text_focus
);
9587 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
9594 static PyObject
*_wrap_Style_l_text_unfocus_set(PyObject
*self
, PyObject
*args
) {
9595 PyObject
*resultobj
;
9596 otk::Style
*arg1
= (otk::Style
*) 0 ;
9597 otk::BColor
*arg2
= (otk::BColor
*) 0 ;
9598 PyObject
* obj0
= 0 ;
9599 PyObject
* obj1
= 0 ;
9601 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_l_text_unfocus_set",&obj0
,&obj1
)) goto fail
;
9602 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9603 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9604 if (arg1
) (arg1
)->l_text_unfocus
= *arg2
;
9606 Py_INCREF(Py_None
); resultobj
= Py_None
;
9613 static PyObject
*_wrap_Style_l_text_unfocus_get(PyObject
*self
, PyObject
*args
) {
9614 PyObject
*resultobj
;
9615 otk::Style
*arg1
= (otk::Style
*) 0 ;
9616 otk::BColor
*result
;
9617 PyObject
* obj0
= 0 ;
9619 if(!PyArg_ParseTuple(args
,(char *)"O:Style_l_text_unfocus_get",&obj0
)) goto fail
;
9620 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9621 result
= (otk::BColor
*)& ((arg1
)->l_text_unfocus
);
9623 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
9630 static PyObject
*_wrap_Style_b_pic_focus_set(PyObject
*self
, PyObject
*args
) {
9631 PyObject
*resultobj
;
9632 otk::Style
*arg1
= (otk::Style
*) 0 ;
9633 otk::BColor
*arg2
= (otk::BColor
*) 0 ;
9634 PyObject
* obj0
= 0 ;
9635 PyObject
* obj1
= 0 ;
9637 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_b_pic_focus_set",&obj0
,&obj1
)) goto fail
;
9638 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9639 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9640 if (arg1
) (arg1
)->b_pic_focus
= *arg2
;
9642 Py_INCREF(Py_None
); resultobj
= Py_None
;
9649 static PyObject
*_wrap_Style_b_pic_focus_get(PyObject
*self
, PyObject
*args
) {
9650 PyObject
*resultobj
;
9651 otk::Style
*arg1
= (otk::Style
*) 0 ;
9652 otk::BColor
*result
;
9653 PyObject
* obj0
= 0 ;
9655 if(!PyArg_ParseTuple(args
,(char *)"O:Style_b_pic_focus_get",&obj0
)) goto fail
;
9656 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9657 result
= (otk::BColor
*)& ((arg1
)->b_pic_focus
);
9659 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
9666 static PyObject
*_wrap_Style_b_pic_unfocus_set(PyObject
*self
, PyObject
*args
) {
9667 PyObject
*resultobj
;
9668 otk::Style
*arg1
= (otk::Style
*) 0 ;
9669 otk::BColor
*arg2
= (otk::BColor
*) 0 ;
9670 PyObject
* obj0
= 0 ;
9671 PyObject
* obj1
= 0 ;
9673 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_b_pic_unfocus_set",&obj0
,&obj1
)) goto fail
;
9674 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9675 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9676 if (arg1
) (arg1
)->b_pic_unfocus
= *arg2
;
9678 Py_INCREF(Py_None
); resultobj
= Py_None
;
9685 static PyObject
*_wrap_Style_b_pic_unfocus_get(PyObject
*self
, PyObject
*args
) {
9686 PyObject
*resultobj
;
9687 otk::Style
*arg1
= (otk::Style
*) 0 ;
9688 otk::BColor
*result
;
9689 PyObject
* obj0
= 0 ;
9691 if(!PyArg_ParseTuple(args
,(char *)"O:Style_b_pic_unfocus_get",&obj0
)) goto fail
;
9692 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9693 result
= (otk::BColor
*)& ((arg1
)->b_pic_unfocus
);
9695 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
9702 static PyObject
*_wrap_Style_border_color_set(PyObject
*self
, PyObject
*args
) {
9703 PyObject
*resultobj
;
9704 otk::Style
*arg1
= (otk::Style
*) 0 ;
9705 otk::BColor
*arg2
= (otk::BColor
*) 0 ;
9706 PyObject
* obj0
= 0 ;
9707 PyObject
* obj1
= 0 ;
9709 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_border_color_set",&obj0
,&obj1
)) goto fail
;
9710 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9711 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9712 if (arg1
) (arg1
)->border_color
= *arg2
;
9714 Py_INCREF(Py_None
); resultobj
= Py_None
;
9721 static PyObject
*_wrap_Style_border_color_get(PyObject
*self
, PyObject
*args
) {
9722 PyObject
*resultobj
;
9723 otk::Style
*arg1
= (otk::Style
*) 0 ;
9724 otk::BColor
*result
;
9725 PyObject
* obj0
= 0 ;
9727 if(!PyArg_ParseTuple(args
,(char *)"O:Style_border_color_get",&obj0
)) goto fail
;
9728 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9729 result
= (otk::BColor
*)& ((arg1
)->border_color
);
9731 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
9738 static PyObject
*_wrap_Style_font_set(PyObject
*self
, PyObject
*args
) {
9739 PyObject
*resultobj
;
9740 otk::Style
*arg1
= (otk::Style
*) 0 ;
9741 otk::BFont
*arg2
= (otk::BFont
*) 0 ;
9742 PyObject
* obj0
= 0 ;
9743 PyObject
* obj1
= 0 ;
9745 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_font_set",&obj0
,&obj1
)) goto fail
;
9746 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9747 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BFont
,SWIG_POINTER_EXCEPTION
| SWIG_POINTER_DISOWN
)) == -1) SWIG_fail
;
9748 if (arg1
) (arg1
)->font
= arg2
;
9750 Py_INCREF(Py_None
); resultobj
= Py_None
;
9757 static PyObject
*_wrap_Style_font_get(PyObject
*self
, PyObject
*args
) {
9758 PyObject
*resultobj
;
9759 otk::Style
*arg1
= (otk::Style
*) 0 ;
9761 PyObject
* obj0
= 0 ;
9763 if(!PyArg_ParseTuple(args
,(char *)"O:Style_font_get",&obj0
)) goto fail
;
9764 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9765 result
= (otk::BFont
*) ((arg1
)->font
);
9767 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BFont
, 0);
9774 static PyObject
*_wrap_Style_f_focus_set(PyObject
*self
, PyObject
*args
) {
9775 PyObject
*resultobj
;
9776 otk::Style
*arg1
= (otk::Style
*) 0 ;
9777 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
9778 PyObject
* obj0
= 0 ;
9779 PyObject
* obj1
= 0 ;
9781 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_f_focus_set",&obj0
,&obj1
)) goto fail
;
9782 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9783 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9784 if (arg1
) (arg1
)->f_focus
= *arg2
;
9786 Py_INCREF(Py_None
); resultobj
= Py_None
;
9793 static PyObject
*_wrap_Style_f_focus_get(PyObject
*self
, PyObject
*args
) {
9794 PyObject
*resultobj
;
9795 otk::Style
*arg1
= (otk::Style
*) 0 ;
9796 otk::BTexture
*result
;
9797 PyObject
* obj0
= 0 ;
9799 if(!PyArg_ParseTuple(args
,(char *)"O:Style_f_focus_get",&obj0
)) goto fail
;
9800 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9801 result
= (otk::BTexture
*)& ((arg1
)->f_focus
);
9803 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
9810 static PyObject
*_wrap_Style_f_unfocus_set(PyObject
*self
, PyObject
*args
) {
9811 PyObject
*resultobj
;
9812 otk::Style
*arg1
= (otk::Style
*) 0 ;
9813 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
9814 PyObject
* obj0
= 0 ;
9815 PyObject
* obj1
= 0 ;
9817 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_f_unfocus_set",&obj0
,&obj1
)) goto fail
;
9818 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9819 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9820 if (arg1
) (arg1
)->f_unfocus
= *arg2
;
9822 Py_INCREF(Py_None
); resultobj
= Py_None
;
9829 static PyObject
*_wrap_Style_f_unfocus_get(PyObject
*self
, PyObject
*args
) {
9830 PyObject
*resultobj
;
9831 otk::Style
*arg1
= (otk::Style
*) 0 ;
9832 otk::BTexture
*result
;
9833 PyObject
* obj0
= 0 ;
9835 if(!PyArg_ParseTuple(args
,(char *)"O:Style_f_unfocus_get",&obj0
)) goto fail
;
9836 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9837 result
= (otk::BTexture
*)& ((arg1
)->f_unfocus
);
9839 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
9846 static PyObject
*_wrap_Style_t_focus_set(PyObject
*self
, PyObject
*args
) {
9847 PyObject
*resultobj
;
9848 otk::Style
*arg1
= (otk::Style
*) 0 ;
9849 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
9850 PyObject
* obj0
= 0 ;
9851 PyObject
* obj1
= 0 ;
9853 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_t_focus_set",&obj0
,&obj1
)) goto fail
;
9854 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9855 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9856 if (arg1
) (arg1
)->t_focus
= *arg2
;
9858 Py_INCREF(Py_None
); resultobj
= Py_None
;
9865 static PyObject
*_wrap_Style_t_focus_get(PyObject
*self
, PyObject
*args
) {
9866 PyObject
*resultobj
;
9867 otk::Style
*arg1
= (otk::Style
*) 0 ;
9868 otk::BTexture
*result
;
9869 PyObject
* obj0
= 0 ;
9871 if(!PyArg_ParseTuple(args
,(char *)"O:Style_t_focus_get",&obj0
)) goto fail
;
9872 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9873 result
= (otk::BTexture
*)& ((arg1
)->t_focus
);
9875 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
9882 static PyObject
*_wrap_Style_t_unfocus_set(PyObject
*self
, PyObject
*args
) {
9883 PyObject
*resultobj
;
9884 otk::Style
*arg1
= (otk::Style
*) 0 ;
9885 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
9886 PyObject
* obj0
= 0 ;
9887 PyObject
* obj1
= 0 ;
9889 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_t_unfocus_set",&obj0
,&obj1
)) goto fail
;
9890 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9891 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9892 if (arg1
) (arg1
)->t_unfocus
= *arg2
;
9894 Py_INCREF(Py_None
); resultobj
= Py_None
;
9901 static PyObject
*_wrap_Style_t_unfocus_get(PyObject
*self
, PyObject
*args
) {
9902 PyObject
*resultobj
;
9903 otk::Style
*arg1
= (otk::Style
*) 0 ;
9904 otk::BTexture
*result
;
9905 PyObject
* obj0
= 0 ;
9907 if(!PyArg_ParseTuple(args
,(char *)"O:Style_t_unfocus_get",&obj0
)) goto fail
;
9908 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9909 result
= (otk::BTexture
*)& ((arg1
)->t_unfocus
);
9911 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
9918 static PyObject
*_wrap_Style_l_focus_set(PyObject
*self
, PyObject
*args
) {
9919 PyObject
*resultobj
;
9920 otk::Style
*arg1
= (otk::Style
*) 0 ;
9921 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
9922 PyObject
* obj0
= 0 ;
9923 PyObject
* obj1
= 0 ;
9925 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_l_focus_set",&obj0
,&obj1
)) goto fail
;
9926 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9927 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9928 if (arg1
) (arg1
)->l_focus
= *arg2
;
9930 Py_INCREF(Py_None
); resultobj
= Py_None
;
9937 static PyObject
*_wrap_Style_l_focus_get(PyObject
*self
, PyObject
*args
) {
9938 PyObject
*resultobj
;
9939 otk::Style
*arg1
= (otk::Style
*) 0 ;
9940 otk::BTexture
*result
;
9941 PyObject
* obj0
= 0 ;
9943 if(!PyArg_ParseTuple(args
,(char *)"O:Style_l_focus_get",&obj0
)) goto fail
;
9944 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9945 result
= (otk::BTexture
*)& ((arg1
)->l_focus
);
9947 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
9954 static PyObject
*_wrap_Style_l_unfocus_set(PyObject
*self
, PyObject
*args
) {
9955 PyObject
*resultobj
;
9956 otk::Style
*arg1
= (otk::Style
*) 0 ;
9957 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
9958 PyObject
* obj0
= 0 ;
9959 PyObject
* obj1
= 0 ;
9961 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_l_unfocus_set",&obj0
,&obj1
)) goto fail
;
9962 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9963 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9964 if (arg1
) (arg1
)->l_unfocus
= *arg2
;
9966 Py_INCREF(Py_None
); resultobj
= Py_None
;
9973 static PyObject
*_wrap_Style_l_unfocus_get(PyObject
*self
, PyObject
*args
) {
9974 PyObject
*resultobj
;
9975 otk::Style
*arg1
= (otk::Style
*) 0 ;
9976 otk::BTexture
*result
;
9977 PyObject
* obj0
= 0 ;
9979 if(!PyArg_ParseTuple(args
,(char *)"O:Style_l_unfocus_get",&obj0
)) goto fail
;
9980 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9981 result
= (otk::BTexture
*)& ((arg1
)->l_unfocus
);
9983 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
9990 static PyObject
*_wrap_Style_h_focus_set(PyObject
*self
, PyObject
*args
) {
9991 PyObject
*resultobj
;
9992 otk::Style
*arg1
= (otk::Style
*) 0 ;
9993 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
9994 PyObject
* obj0
= 0 ;
9995 PyObject
* obj1
= 0 ;
9997 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_h_focus_set",&obj0
,&obj1
)) goto fail
;
9998 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9999 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10000 if (arg1
) (arg1
)->h_focus
= *arg2
;
10002 Py_INCREF(Py_None
); resultobj
= Py_None
;
10009 static PyObject
*_wrap_Style_h_focus_get(PyObject
*self
, PyObject
*args
) {
10010 PyObject
*resultobj
;
10011 otk::Style
*arg1
= (otk::Style
*) 0 ;
10012 otk::BTexture
*result
;
10013 PyObject
* obj0
= 0 ;
10015 if(!PyArg_ParseTuple(args
,(char *)"O:Style_h_focus_get",&obj0
)) goto fail
;
10016 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10017 result
= (otk::BTexture
*)& ((arg1
)->h_focus
);
10019 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
10026 static PyObject
*_wrap_Style_h_unfocus_set(PyObject
*self
, PyObject
*args
) {
10027 PyObject
*resultobj
;
10028 otk::Style
*arg1
= (otk::Style
*) 0 ;
10029 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
10030 PyObject
* obj0
= 0 ;
10031 PyObject
* obj1
= 0 ;
10033 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_h_unfocus_set",&obj0
,&obj1
)) goto fail
;
10034 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10035 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10036 if (arg1
) (arg1
)->h_unfocus
= *arg2
;
10038 Py_INCREF(Py_None
); resultobj
= Py_None
;
10045 static PyObject
*_wrap_Style_h_unfocus_get(PyObject
*self
, PyObject
*args
) {
10046 PyObject
*resultobj
;
10047 otk::Style
*arg1
= (otk::Style
*) 0 ;
10048 otk::BTexture
*result
;
10049 PyObject
* obj0
= 0 ;
10051 if(!PyArg_ParseTuple(args
,(char *)"O:Style_h_unfocus_get",&obj0
)) goto fail
;
10052 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10053 result
= (otk::BTexture
*)& ((arg1
)->h_unfocus
);
10055 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
10062 static PyObject
*_wrap_Style_b_focus_set(PyObject
*self
, PyObject
*args
) {
10063 PyObject
*resultobj
;
10064 otk::Style
*arg1
= (otk::Style
*) 0 ;
10065 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
10066 PyObject
* obj0
= 0 ;
10067 PyObject
* obj1
= 0 ;
10069 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_b_focus_set",&obj0
,&obj1
)) goto fail
;
10070 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10071 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10072 if (arg1
) (arg1
)->b_focus
= *arg2
;
10074 Py_INCREF(Py_None
); resultobj
= Py_None
;
10081 static PyObject
*_wrap_Style_b_focus_get(PyObject
*self
, PyObject
*args
) {
10082 PyObject
*resultobj
;
10083 otk::Style
*arg1
= (otk::Style
*) 0 ;
10084 otk::BTexture
*result
;
10085 PyObject
* obj0
= 0 ;
10087 if(!PyArg_ParseTuple(args
,(char *)"O:Style_b_focus_get",&obj0
)) goto fail
;
10088 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10089 result
= (otk::BTexture
*)& ((arg1
)->b_focus
);
10091 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
10098 static PyObject
*_wrap_Style_b_unfocus_set(PyObject
*self
, PyObject
*args
) {
10099 PyObject
*resultobj
;
10100 otk::Style
*arg1
= (otk::Style
*) 0 ;
10101 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
10102 PyObject
* obj0
= 0 ;
10103 PyObject
* obj1
= 0 ;
10105 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_b_unfocus_set",&obj0
,&obj1
)) goto fail
;
10106 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10107 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10108 if (arg1
) (arg1
)->b_unfocus
= *arg2
;
10110 Py_INCREF(Py_None
); resultobj
= Py_None
;
10117 static PyObject
*_wrap_Style_b_unfocus_get(PyObject
*self
, PyObject
*args
) {
10118 PyObject
*resultobj
;
10119 otk::Style
*arg1
= (otk::Style
*) 0 ;
10120 otk::BTexture
*result
;
10121 PyObject
* obj0
= 0 ;
10123 if(!PyArg_ParseTuple(args
,(char *)"O:Style_b_unfocus_get",&obj0
)) goto fail
;
10124 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10125 result
= (otk::BTexture
*)& ((arg1
)->b_unfocus
);
10127 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
10134 static PyObject
*_wrap_Style_b_pressed_focus_set(PyObject
*self
, PyObject
*args
) {
10135 PyObject
*resultobj
;
10136 otk::Style
*arg1
= (otk::Style
*) 0 ;
10137 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
10138 PyObject
* obj0
= 0 ;
10139 PyObject
* obj1
= 0 ;
10141 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_b_pressed_focus_set",&obj0
,&obj1
)) goto fail
;
10142 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10143 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10144 if (arg1
) (arg1
)->b_pressed_focus
= *arg2
;
10146 Py_INCREF(Py_None
); resultobj
= Py_None
;
10153 static PyObject
*_wrap_Style_b_pressed_focus_get(PyObject
*self
, PyObject
*args
) {
10154 PyObject
*resultobj
;
10155 otk::Style
*arg1
= (otk::Style
*) 0 ;
10156 otk::BTexture
*result
;
10157 PyObject
* obj0
= 0 ;
10159 if(!PyArg_ParseTuple(args
,(char *)"O:Style_b_pressed_focus_get",&obj0
)) goto fail
;
10160 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10161 result
= (otk::BTexture
*)& ((arg1
)->b_pressed_focus
);
10163 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
10170 static PyObject
*_wrap_Style_b_pressed_unfocus_set(PyObject
*self
, PyObject
*args
) {
10171 PyObject
*resultobj
;
10172 otk::Style
*arg1
= (otk::Style
*) 0 ;
10173 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
10174 PyObject
* obj0
= 0 ;
10175 PyObject
* obj1
= 0 ;
10177 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_b_pressed_unfocus_set",&obj0
,&obj1
)) goto fail
;
10178 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10179 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10180 if (arg1
) (arg1
)->b_pressed_unfocus
= *arg2
;
10182 Py_INCREF(Py_None
); resultobj
= Py_None
;
10189 static PyObject
*_wrap_Style_b_pressed_unfocus_get(PyObject
*self
, PyObject
*args
) {
10190 PyObject
*resultobj
;
10191 otk::Style
*arg1
= (otk::Style
*) 0 ;
10192 otk::BTexture
*result
;
10193 PyObject
* obj0
= 0 ;
10195 if(!PyArg_ParseTuple(args
,(char *)"O:Style_b_pressed_unfocus_get",&obj0
)) goto fail
;
10196 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10197 result
= (otk::BTexture
*)& ((arg1
)->b_pressed_unfocus
);
10199 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
10206 static PyObject
*_wrap_Style_g_focus_set(PyObject
*self
, PyObject
*args
) {
10207 PyObject
*resultobj
;
10208 otk::Style
*arg1
= (otk::Style
*) 0 ;
10209 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
10210 PyObject
* obj0
= 0 ;
10211 PyObject
* obj1
= 0 ;
10213 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_g_focus_set",&obj0
,&obj1
)) goto fail
;
10214 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10215 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10216 if (arg1
) (arg1
)->g_focus
= *arg2
;
10218 Py_INCREF(Py_None
); resultobj
= Py_None
;
10225 static PyObject
*_wrap_Style_g_focus_get(PyObject
*self
, PyObject
*args
) {
10226 PyObject
*resultobj
;
10227 otk::Style
*arg1
= (otk::Style
*) 0 ;
10228 otk::BTexture
*result
;
10229 PyObject
* obj0
= 0 ;
10231 if(!PyArg_ParseTuple(args
,(char *)"O:Style_g_focus_get",&obj0
)) goto fail
;
10232 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10233 result
= (otk::BTexture
*)& ((arg1
)->g_focus
);
10235 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
10242 static PyObject
*_wrap_Style_g_unfocus_set(PyObject
*self
, PyObject
*args
) {
10243 PyObject
*resultobj
;
10244 otk::Style
*arg1
= (otk::Style
*) 0 ;
10245 otk::BTexture
*arg2
= (otk::BTexture
*) 0 ;
10246 PyObject
* obj0
= 0 ;
10247 PyObject
* obj1
= 0 ;
10249 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_g_unfocus_set",&obj0
,&obj1
)) goto fail
;
10250 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10251 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10252 if (arg1
) (arg1
)->g_unfocus
= *arg2
;
10254 Py_INCREF(Py_None
); resultobj
= Py_None
;
10261 static PyObject
*_wrap_Style_g_unfocus_get(PyObject
*self
, PyObject
*args
) {
10262 PyObject
*resultobj
;
10263 otk::Style
*arg1
= (otk::Style
*) 0 ;
10264 otk::BTexture
*result
;
10265 PyObject
* obj0
= 0 ;
10267 if(!PyArg_ParseTuple(args
,(char *)"O:Style_g_unfocus_get",&obj0
)) goto fail
;
10268 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10269 result
= (otk::BTexture
*)& ((arg1
)->g_unfocus
);
10271 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
10278 static PyObject
*_wrap_Style_close_button_set(PyObject
*self
, PyObject
*args
) {
10279 PyObject
*resultobj
;
10280 otk::Style
*arg1
= (otk::Style
*) 0 ;
10281 otk::PixmapMask
*arg2
= (otk::PixmapMask
*) 0 ;
10282 PyObject
* obj0
= 0 ;
10283 PyObject
* obj1
= 0 ;
10285 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_close_button_set",&obj0
,&obj1
)) goto fail
;
10286 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10287 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__PixmapMask
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10288 if (arg1
) (arg1
)->close_button
= *arg2
;
10290 Py_INCREF(Py_None
); resultobj
= Py_None
;
10297 static PyObject
*_wrap_Style_close_button_get(PyObject
*self
, PyObject
*args
) {
10298 PyObject
*resultobj
;
10299 otk::Style
*arg1
= (otk::Style
*) 0 ;
10300 otk::PixmapMask
*result
;
10301 PyObject
* obj0
= 0 ;
10303 if(!PyArg_ParseTuple(args
,(char *)"O:Style_close_button_get",&obj0
)) goto fail
;
10304 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10305 result
= (otk::PixmapMask
*)& ((arg1
)->close_button
);
10307 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__PixmapMask
, 0);
10314 static PyObject
*_wrap_Style_max_button_set(PyObject
*self
, PyObject
*args
) {
10315 PyObject
*resultobj
;
10316 otk::Style
*arg1
= (otk::Style
*) 0 ;
10317 otk::PixmapMask
*arg2
= (otk::PixmapMask
*) 0 ;
10318 PyObject
* obj0
= 0 ;
10319 PyObject
* obj1
= 0 ;
10321 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_max_button_set",&obj0
,&obj1
)) goto fail
;
10322 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10323 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__PixmapMask
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10324 if (arg1
) (arg1
)->max_button
= *arg2
;
10326 Py_INCREF(Py_None
); resultobj
= Py_None
;
10333 static PyObject
*_wrap_Style_max_button_get(PyObject
*self
, PyObject
*args
) {
10334 PyObject
*resultobj
;
10335 otk::Style
*arg1
= (otk::Style
*) 0 ;
10336 otk::PixmapMask
*result
;
10337 PyObject
* obj0
= 0 ;
10339 if(!PyArg_ParseTuple(args
,(char *)"O:Style_max_button_get",&obj0
)) goto fail
;
10340 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10341 result
= (otk::PixmapMask
*)& ((arg1
)->max_button
);
10343 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__PixmapMask
, 0);
10350 static PyObject
*_wrap_Style_icon_button_set(PyObject
*self
, PyObject
*args
) {
10351 PyObject
*resultobj
;
10352 otk::Style
*arg1
= (otk::Style
*) 0 ;
10353 otk::PixmapMask
*arg2
= (otk::PixmapMask
*) 0 ;
10354 PyObject
* obj0
= 0 ;
10355 PyObject
* obj1
= 0 ;
10357 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_icon_button_set",&obj0
,&obj1
)) goto fail
;
10358 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10359 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__PixmapMask
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10360 if (arg1
) (arg1
)->icon_button
= *arg2
;
10362 Py_INCREF(Py_None
); resultobj
= Py_None
;
10369 static PyObject
*_wrap_Style_icon_button_get(PyObject
*self
, PyObject
*args
) {
10370 PyObject
*resultobj
;
10371 otk::Style
*arg1
= (otk::Style
*) 0 ;
10372 otk::PixmapMask
*result
;
10373 PyObject
* obj0
= 0 ;
10375 if(!PyArg_ParseTuple(args
,(char *)"O:Style_icon_button_get",&obj0
)) goto fail
;
10376 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10377 result
= (otk::PixmapMask
*)& ((arg1
)->icon_button
);
10379 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__PixmapMask
, 0);
10386 static PyObject
*_wrap_Style_stick_button_set(PyObject
*self
, PyObject
*args
) {
10387 PyObject
*resultobj
;
10388 otk::Style
*arg1
= (otk::Style
*) 0 ;
10389 otk::PixmapMask
*arg2
= (otk::PixmapMask
*) 0 ;
10390 PyObject
* obj0
= 0 ;
10391 PyObject
* obj1
= 0 ;
10393 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_stick_button_set",&obj0
,&obj1
)) goto fail
;
10394 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10395 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__PixmapMask
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10396 if (arg1
) (arg1
)->stick_button
= *arg2
;
10398 Py_INCREF(Py_None
); resultobj
= Py_None
;
10405 static PyObject
*_wrap_Style_stick_button_get(PyObject
*self
, PyObject
*args
) {
10406 PyObject
*resultobj
;
10407 otk::Style
*arg1
= (otk::Style
*) 0 ;
10408 otk::PixmapMask
*result
;
10409 PyObject
* obj0
= 0 ;
10411 if(!PyArg_ParseTuple(args
,(char *)"O:Style_stick_button_get",&obj0
)) goto fail
;
10412 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10413 result
= (otk::PixmapMask
*)& ((arg1
)->stick_button
);
10415 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__PixmapMask
, 0);
10422 static PyObject
*_wrap_Style_justify_set(PyObject
*self
, PyObject
*args
) {
10423 PyObject
*resultobj
;
10424 otk::Style
*arg1
= (otk::Style
*) 0 ;
10426 PyObject
* obj0
= 0 ;
10428 if(!PyArg_ParseTuple(args
,(char *)"Oi:Style_justify_set",&obj0
,&arg2
)) goto fail
;
10429 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10430 if (arg1
) (arg1
)->justify
= (otk::Style::TextJustify
)arg2
;
10432 Py_INCREF(Py_None
); resultobj
= Py_None
;
10439 static PyObject
*_wrap_Style_justify_get(PyObject
*self
, PyObject
*args
) {
10440 PyObject
*resultobj
;
10441 otk::Style
*arg1
= (otk::Style
*) 0 ;
10443 PyObject
* obj0
= 0 ;
10445 if(!PyArg_ParseTuple(args
,(char *)"O:Style_justify_get",&obj0
)) goto fail
;
10446 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10447 result
= (int) ((arg1
)->justify
);
10449 resultobj
= PyInt_FromLong((long)result
);
10456 static PyObject
*_wrap_Style_bullet_type_set(PyObject
*self
, PyObject
*args
) {
10457 PyObject
*resultobj
;
10458 otk::Style
*arg1
= (otk::Style
*) 0 ;
10460 PyObject
* obj0
= 0 ;
10462 if(!PyArg_ParseTuple(args
,(char *)"Oi:Style_bullet_type_set",&obj0
,&arg2
)) goto fail
;
10463 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10464 if (arg1
) (arg1
)->bullet_type
= (otk::Style::BulletType
)arg2
;
10466 Py_INCREF(Py_None
); resultobj
= Py_None
;
10473 static PyObject
*_wrap_Style_bullet_type_get(PyObject
*self
, PyObject
*args
) {
10474 PyObject
*resultobj
;
10475 otk::Style
*arg1
= (otk::Style
*) 0 ;
10477 PyObject
* obj0
= 0 ;
10479 if(!PyArg_ParseTuple(args
,(char *)"O:Style_bullet_type_get",&obj0
)) goto fail
;
10480 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10481 result
= (int) ((arg1
)->bullet_type
);
10483 resultobj
= PyInt_FromLong((long)result
);
10490 static PyObject
*_wrap_Style_handle_width_set(PyObject
*self
, PyObject
*args
) {
10491 PyObject
*resultobj
;
10492 otk::Style
*arg1
= (otk::Style
*) 0 ;
10493 unsigned int arg2
;
10494 PyObject
* obj0
= 0 ;
10495 PyObject
* obj1
= 0 ;
10497 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_handle_width_set",&obj0
,&obj1
)) goto fail
;
10498 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10499 arg2
= (unsigned int) PyInt_AsLong(obj1
);
10500 if (PyErr_Occurred()) SWIG_fail
;
10501 if (arg1
) (arg1
)->handle_width
= arg2
;
10503 Py_INCREF(Py_None
); resultobj
= Py_None
;
10510 static PyObject
*_wrap_Style_handle_width_get(PyObject
*self
, PyObject
*args
) {
10511 PyObject
*resultobj
;
10512 otk::Style
*arg1
= (otk::Style
*) 0 ;
10513 unsigned int result
;
10514 PyObject
* obj0
= 0 ;
10516 if(!PyArg_ParseTuple(args
,(char *)"O:Style_handle_width_get",&obj0
)) goto fail
;
10517 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10518 result
= (unsigned int) ((arg1
)->handle_width
);
10520 resultobj
= PyInt_FromLong((long)result
);
10527 static PyObject
*_wrap_Style_bevel_width_set(PyObject
*self
, PyObject
*args
) {
10528 PyObject
*resultobj
;
10529 otk::Style
*arg1
= (otk::Style
*) 0 ;
10530 unsigned int arg2
;
10531 PyObject
* obj0
= 0 ;
10532 PyObject
* obj1
= 0 ;
10534 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_bevel_width_set",&obj0
,&obj1
)) goto fail
;
10535 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10536 arg2
= (unsigned int) PyInt_AsLong(obj1
);
10537 if (PyErr_Occurred()) SWIG_fail
;
10538 if (arg1
) (arg1
)->bevel_width
= arg2
;
10540 Py_INCREF(Py_None
); resultobj
= Py_None
;
10547 static PyObject
*_wrap_Style_bevel_width_get(PyObject
*self
, PyObject
*args
) {
10548 PyObject
*resultobj
;
10549 otk::Style
*arg1
= (otk::Style
*) 0 ;
10550 unsigned int result
;
10551 PyObject
* obj0
= 0 ;
10553 if(!PyArg_ParseTuple(args
,(char *)"O:Style_bevel_width_get",&obj0
)) goto fail
;
10554 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10555 result
= (unsigned int) ((arg1
)->bevel_width
);
10557 resultobj
= PyInt_FromLong((long)result
);
10564 static PyObject
*_wrap_Style_frame_width_set(PyObject
*self
, PyObject
*args
) {
10565 PyObject
*resultobj
;
10566 otk::Style
*arg1
= (otk::Style
*) 0 ;
10567 unsigned int arg2
;
10568 PyObject
* obj0
= 0 ;
10569 PyObject
* obj1
= 0 ;
10571 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_frame_width_set",&obj0
,&obj1
)) goto fail
;
10572 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10573 arg2
= (unsigned int) PyInt_AsLong(obj1
);
10574 if (PyErr_Occurred()) SWIG_fail
;
10575 if (arg1
) (arg1
)->frame_width
= arg2
;
10577 Py_INCREF(Py_None
); resultobj
= Py_None
;
10584 static PyObject
*_wrap_Style_frame_width_get(PyObject
*self
, PyObject
*args
) {
10585 PyObject
*resultobj
;
10586 otk::Style
*arg1
= (otk::Style
*) 0 ;
10587 unsigned int result
;
10588 PyObject
* obj0
= 0 ;
10590 if(!PyArg_ParseTuple(args
,(char *)"O:Style_frame_width_get",&obj0
)) goto fail
;
10591 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10592 result
= (unsigned int) ((arg1
)->frame_width
);
10594 resultobj
= PyInt_FromLong((long)result
);
10601 static PyObject
*_wrap_Style_border_width_set(PyObject
*self
, PyObject
*args
) {
10602 PyObject
*resultobj
;
10603 otk::Style
*arg1
= (otk::Style
*) 0 ;
10604 unsigned int arg2
;
10605 PyObject
* obj0
= 0 ;
10606 PyObject
* obj1
= 0 ;
10608 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_border_width_set",&obj0
,&obj1
)) goto fail
;
10609 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10610 arg2
= (unsigned int) PyInt_AsLong(obj1
);
10611 if (PyErr_Occurred()) SWIG_fail
;
10612 if (arg1
) (arg1
)->border_width
= arg2
;
10614 Py_INCREF(Py_None
); resultobj
= Py_None
;
10621 static PyObject
*_wrap_Style_border_width_get(PyObject
*self
, PyObject
*args
) {
10622 PyObject
*resultobj
;
10623 otk::Style
*arg1
= (otk::Style
*) 0 ;
10624 unsigned int result
;
10625 PyObject
* obj0
= 0 ;
10627 if(!PyArg_ParseTuple(args
,(char *)"O:Style_border_width_get",&obj0
)) goto fail
;
10628 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10629 result
= (unsigned int) ((arg1
)->border_width
);
10631 resultobj
= PyInt_FromLong((long)result
);
10638 static PyObject
*_wrap_Style_screen_number_set(PyObject
*self
, PyObject
*args
) {
10639 PyObject
*resultobj
;
10640 otk::Style
*arg1
= (otk::Style
*) 0 ;
10641 unsigned int arg2
;
10642 PyObject
* obj0
= 0 ;
10643 PyObject
* obj1
= 0 ;
10645 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_screen_number_set",&obj0
,&obj1
)) goto fail
;
10646 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10647 arg2
= (unsigned int) PyInt_AsLong(obj1
);
10648 if (PyErr_Occurred()) SWIG_fail
;
10649 if (arg1
) (arg1
)->screen_number
= arg2
;
10651 Py_INCREF(Py_None
); resultobj
= Py_None
;
10658 static PyObject
*_wrap_Style_screen_number_get(PyObject
*self
, PyObject
*args
) {
10659 PyObject
*resultobj
;
10660 otk::Style
*arg1
= (otk::Style
*) 0 ;
10661 unsigned int result
;
10662 PyObject
* obj0
= 0 ;
10664 if(!PyArg_ParseTuple(args
,(char *)"O:Style_screen_number_get",&obj0
)) goto fail
;
10665 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10666 result
= (unsigned int) ((arg1
)->screen_number
);
10668 resultobj
= PyInt_FromLong((long)result
);
10675 static PyObject
*_wrap_Style_shadow_fonts_set(PyObject
*self
, PyObject
*args
) {
10676 PyObject
*resultobj
;
10677 otk::Style
*arg1
= (otk::Style
*) 0 ;
10679 PyObject
* obj0
= 0 ;
10680 PyObject
* obj1
= 0 ;
10682 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_shadow_fonts_set",&obj0
,&obj1
)) goto fail
;
10683 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10684 arg2
= (bool) PyInt_AsLong(obj1
);
10685 if (PyErr_Occurred()) SWIG_fail
;
10686 if (arg1
) (arg1
)->shadow_fonts
= arg2
;
10688 Py_INCREF(Py_None
); resultobj
= Py_None
;
10695 static PyObject
*_wrap_Style_shadow_fonts_get(PyObject
*self
, PyObject
*args
) {
10696 PyObject
*resultobj
;
10697 otk::Style
*arg1
= (otk::Style
*) 0 ;
10699 PyObject
* obj0
= 0 ;
10701 if(!PyArg_ParseTuple(args
,(char *)"O:Style_shadow_fonts_get",&obj0
)) goto fail
;
10702 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10703 result
= (bool) ((arg1
)->shadow_fonts
);
10705 resultobj
= PyInt_FromLong((long)result
);
10712 static PyObject
*_wrap_Style_aa_fonts_set(PyObject
*self
, PyObject
*args
) {
10713 PyObject
*resultobj
;
10714 otk::Style
*arg1
= (otk::Style
*) 0 ;
10716 PyObject
* obj0
= 0 ;
10717 PyObject
* obj1
= 0 ;
10719 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_aa_fonts_set",&obj0
,&obj1
)) goto fail
;
10720 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10721 arg2
= (bool) PyInt_AsLong(obj1
);
10722 if (PyErr_Occurred()) SWIG_fail
;
10723 if (arg1
) (arg1
)->aa_fonts
= arg2
;
10725 Py_INCREF(Py_None
); resultobj
= Py_None
;
10732 static PyObject
*_wrap_Style_aa_fonts_get(PyObject
*self
, PyObject
*args
) {
10733 PyObject
*resultobj
;
10734 otk::Style
*arg1
= (otk::Style
*) 0 ;
10736 PyObject
* obj0
= 0 ;
10738 if(!PyArg_ParseTuple(args
,(char *)"O:Style_aa_fonts_get",&obj0
)) goto fail
;
10739 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10740 result
= (bool) ((arg1
)->aa_fonts
);
10742 resultobj
= PyInt_FromLong((long)result
);
10749 static PyObject
*_wrap_new_Style__SWIG_0(PyObject
*self
, PyObject
*args
) {
10750 PyObject
*resultobj
;
10751 otk::Style
*result
;
10753 if(!PyArg_ParseTuple(args
,(char *)":new_Style")) goto fail
;
10754 result
= (otk::Style
*)new otk::Style();
10756 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Style
, 1);
10763 static PyObject
*_wrap_new_Style__SWIG_1(PyObject
*self
, PyObject
*args
) {
10764 PyObject
*resultobj
;
10765 otk::BImageControl
*arg1
= (otk::BImageControl
*) 0 ;
10766 otk::Style
*result
;
10767 PyObject
* obj0
= 0 ;
10769 if(!PyArg_ParseTuple(args
,(char *)"O:new_Style",&obj0
)) goto fail
;
10770 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10771 result
= (otk::Style
*)new otk::Style(arg1
);
10773 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Style
, 1);
10780 static PyObject
*_wrap_new_Style(PyObject
*self
, PyObject
*args
) {
10785 argc
= PyObject_Length(args
);
10786 for (ii
= 0; (ii
< argc
) && (ii
< 1); ii
++) {
10787 argv
[ii
] = PyTuple_GetItem(args
,ii
);
10790 return _wrap_new_Style__SWIG_0(self
,args
);
10796 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__BImageControl
, 0) == -1) {
10804 return _wrap_new_Style__SWIG_1(self
,args
);
10808 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'new_Style'");
10813 static PyObject
*_wrap_delete_Style(PyObject
*self
, PyObject
*args
) {
10814 PyObject
*resultobj
;
10815 otk::Style
*arg1
= (otk::Style
*) 0 ;
10816 PyObject
* obj0
= 0 ;
10818 if(!PyArg_ParseTuple(args
,(char *)"O:delete_Style",&obj0
)) goto fail
;
10819 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10822 Py_INCREF(Py_None
); resultobj
= Py_None
;
10829 static PyObject
*_wrap_Style_readDatabaseMask(PyObject
*self
, PyObject
*args
) {
10830 PyObject
*resultobj
;
10831 otk::Style
*arg1
= (otk::Style
*) 0 ;
10832 std::string
*arg2
= 0 ;
10833 otk::PixmapMask
*arg3
= 0 ;
10834 otk::Configuration
*arg4
= 0 ;
10835 std::string temp2
;
10836 PyObject
* obj0
= 0 ;
10837 PyObject
* obj1
= 0 ;
10838 PyObject
* obj2
= 0 ;
10839 PyObject
* obj3
= 0 ;
10841 if(!PyArg_ParseTuple(args
,(char *)"OOOO:Style_readDatabaseMask",&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
10842 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10844 if (PyString_Check(obj1
)) {
10845 temp2
= std::string(PyString_AsString(obj1
));
10848 SWIG_exception(SWIG_TypeError
, "string expected");
10851 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_otk__PixmapMask
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10852 if (arg3
== NULL
) {
10853 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
10855 if ((SWIG_ConvertPtr(obj3
,(void **) &arg4
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10856 if (arg4
== NULL
) {
10857 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
10859 (arg1
)->readDatabaseMask((std::string
const &)*arg2
,*arg3
,(otk::Configuration
const &)*arg4
);
10861 Py_INCREF(Py_None
); resultobj
= Py_None
;
10868 static PyObject
*_wrap_Style_readDatabaseTexture(PyObject
*self
, PyObject
*args
) {
10869 PyObject
*resultobj
;
10870 otk::Style
*arg1
= (otk::Style
*) 0 ;
10871 std::string
*arg2
= 0 ;
10872 std::string
*arg3
= 0 ;
10873 otk::Configuration
*arg4
= 0 ;
10874 bool arg5
= (bool) false ;
10875 otk::BTexture result
;
10876 std::string temp2
;
10877 std::string temp3
;
10878 PyObject
* obj0
= 0 ;
10879 PyObject
* obj1
= 0 ;
10880 PyObject
* obj2
= 0 ;
10881 PyObject
* obj3
= 0 ;
10882 PyObject
* obj4
= 0 ;
10884 if(!PyArg_ParseTuple(args
,(char *)"OOOO|O:Style_readDatabaseTexture",&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
;
10885 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10887 if (PyString_Check(obj1
)) {
10888 temp2
= std::string(PyString_AsString(obj1
));
10891 SWIG_exception(SWIG_TypeError
, "string expected");
10895 if (PyString_Check(obj2
)) {
10896 temp3
= std::string(PyString_AsString(obj2
));
10899 SWIG_exception(SWIG_TypeError
, "string expected");
10902 if ((SWIG_ConvertPtr(obj3
,(void **) &arg4
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10903 if (arg4
== NULL
) {
10904 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
10907 arg5
= (bool) PyInt_AsLong(obj4
);
10908 if (PyErr_Occurred()) SWIG_fail
;
10910 result
= (arg1
)->readDatabaseTexture((std::string
const &)*arg2
,(std::string
const &)*arg3
,(otk::Configuration
const &)*arg4
,arg5
);
10913 otk::BTexture
* resultptr
;
10914 resultptr
= new otk::BTexture((otk::BTexture
&) result
);
10915 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_otk__BTexture
, 1);
10923 static PyObject
*_wrap_Style_readDatabaseColor(PyObject
*self
, PyObject
*args
) {
10924 PyObject
*resultobj
;
10925 otk::Style
*arg1
= (otk::Style
*) 0 ;
10926 std::string
*arg2
= 0 ;
10927 std::string
*arg3
= 0 ;
10928 otk::Configuration
*arg4
= 0 ;
10929 otk::BColor result
;
10930 std::string temp2
;
10931 std::string temp3
;
10932 PyObject
* obj0
= 0 ;
10933 PyObject
* obj1
= 0 ;
10934 PyObject
* obj2
= 0 ;
10935 PyObject
* obj3
= 0 ;
10937 if(!PyArg_ParseTuple(args
,(char *)"OOOO:Style_readDatabaseColor",&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
10938 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10940 if (PyString_Check(obj1
)) {
10941 temp2
= std::string(PyString_AsString(obj1
));
10944 SWIG_exception(SWIG_TypeError
, "string expected");
10948 if (PyString_Check(obj2
)) {
10949 temp3
= std::string(PyString_AsString(obj2
));
10952 SWIG_exception(SWIG_TypeError
, "string expected");
10955 if ((SWIG_ConvertPtr(obj3
,(void **) &arg4
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10956 if (arg4
== NULL
) {
10957 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
10959 result
= (arg1
)->readDatabaseColor((std::string
const &)*arg2
,(std::string
const &)*arg3
,(otk::Configuration
const &)*arg4
);
10962 otk::BColor
* resultptr
;
10963 resultptr
= new otk::BColor((otk::BColor
&) result
);
10964 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_otk__BColor
, 1);
10972 static PyObject
*_wrap_Style_readDatabaseFont(PyObject
*self
, PyObject
*args
) {
10973 PyObject
*resultobj
;
10974 otk::Style
*arg1
= (otk::Style
*) 0 ;
10975 std::string
*arg2
= 0 ;
10976 otk::Configuration
*arg3
= 0 ;
10977 otk::BFont
*result
;
10978 std::string temp2
;
10979 PyObject
* obj0
= 0 ;
10980 PyObject
* obj1
= 0 ;
10981 PyObject
* obj2
= 0 ;
10983 if(!PyArg_ParseTuple(args
,(char *)"OOO:Style_readDatabaseFont",&obj0
,&obj1
,&obj2
)) goto fail
;
10984 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10986 if (PyString_Check(obj1
)) {
10987 temp2
= std::string(PyString_AsString(obj1
));
10990 SWIG_exception(SWIG_TypeError
, "string expected");
10993 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10994 if (arg3
== NULL
) {
10995 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
10997 result
= (otk::BFont
*)(arg1
)->readDatabaseFont((std::string
const &)*arg2
,(otk::Configuration
const &)*arg3
);
10999 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BFont
, 0);
11006 static PyObject
*_wrap_Style_load(PyObject
*self
, PyObject
*args
) {
11007 PyObject
*resultobj
;
11008 otk::Style
*arg1
= (otk::Style
*) 0 ;
11009 otk::Configuration
*arg2
= 0 ;
11010 PyObject
* obj0
= 0 ;
11011 PyObject
* obj1
= 0 ;
11013 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_load",&obj0
,&obj1
)) goto fail
;
11014 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11015 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Configuration
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11016 if (arg2
== NULL
) {
11017 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
11019 (arg1
)->load((otk::Configuration
const &)*arg2
);
11021 Py_INCREF(Py_None
); resultobj
= Py_None
;
11028 static PyObject
*_wrap_Style_getCloseButtonMask(PyObject
*self
, PyObject
*args
) {
11029 PyObject
*resultobj
;
11030 otk::Style
*arg1
= (otk::Style
*) 0 ;
11031 otk::PixmapMask
*result
;
11032 PyObject
* obj0
= 0 ;
11034 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getCloseButtonMask",&obj0
)) goto fail
;
11035 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11036 result
= (otk::PixmapMask
*)(arg1
)->getCloseButtonMask();
11038 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__PixmapMask
, 0);
11045 static PyObject
*_wrap_Style_getMaximizeButtonMask(PyObject
*self
, PyObject
*args
) {
11046 PyObject
*resultobj
;
11047 otk::Style
*arg1
= (otk::Style
*) 0 ;
11048 otk::PixmapMask
*result
;
11049 PyObject
* obj0
= 0 ;
11051 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getMaximizeButtonMask",&obj0
)) goto fail
;
11052 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11053 result
= (otk::PixmapMask
*)(arg1
)->getMaximizeButtonMask();
11055 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__PixmapMask
, 0);
11062 static PyObject
*_wrap_Style_getIconifyButtonMask(PyObject
*self
, PyObject
*args
) {
11063 PyObject
*resultobj
;
11064 otk::Style
*arg1
= (otk::Style
*) 0 ;
11065 otk::PixmapMask
*result
;
11066 PyObject
* obj0
= 0 ;
11068 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getIconifyButtonMask",&obj0
)) goto fail
;
11069 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11070 result
= (otk::PixmapMask
*)(arg1
)->getIconifyButtonMask();
11072 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__PixmapMask
, 0);
11079 static PyObject
*_wrap_Style_getStickyButtonMask(PyObject
*self
, PyObject
*args
) {
11080 PyObject
*resultobj
;
11081 otk::Style
*arg1
= (otk::Style
*) 0 ;
11082 otk::PixmapMask
*result
;
11083 PyObject
* obj0
= 0 ;
11085 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getStickyButtonMask",&obj0
)) goto fail
;
11086 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11087 result
= (otk::PixmapMask
*)(arg1
)->getStickyButtonMask();
11089 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__PixmapMask
, 0);
11096 static PyObject
*_wrap_Style_getTextFocus(PyObject
*self
, PyObject
*args
) {
11097 PyObject
*resultobj
;
11098 otk::Style
*arg1
= (otk::Style
*) 0 ;
11099 otk::BColor
*result
;
11100 PyObject
* obj0
= 0 ;
11102 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getTextFocus",&obj0
)) goto fail
;
11103 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11104 result
= (otk::BColor
*)(arg1
)->getTextFocus();
11106 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
11113 static PyObject
*_wrap_Style_getTextUnfocus(PyObject
*self
, PyObject
*args
) {
11114 PyObject
*resultobj
;
11115 otk::Style
*arg1
= (otk::Style
*) 0 ;
11116 otk::BColor
*result
;
11117 PyObject
* obj0
= 0 ;
11119 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getTextUnfocus",&obj0
)) goto fail
;
11120 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11121 result
= (otk::BColor
*)(arg1
)->getTextUnfocus();
11123 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
11130 static PyObject
*_wrap_Style_getButtonPicFocus(PyObject
*self
, PyObject
*args
) {
11131 PyObject
*resultobj
;
11132 otk::Style
*arg1
= (otk::Style
*) 0 ;
11133 otk::BColor
*result
;
11134 PyObject
* obj0
= 0 ;
11136 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getButtonPicFocus",&obj0
)) goto fail
;
11137 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11138 result
= (otk::BColor
*)(arg1
)->getButtonPicFocus();
11140 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
11147 static PyObject
*_wrap_Style_getButtonPicUnfocus(PyObject
*self
, PyObject
*args
) {
11148 PyObject
*resultobj
;
11149 otk::Style
*arg1
= (otk::Style
*) 0 ;
11150 otk::BColor
*result
;
11151 PyObject
* obj0
= 0 ;
11153 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getButtonPicUnfocus",&obj0
)) goto fail
;
11154 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11155 result
= (otk::BColor
*)(arg1
)->getButtonPicUnfocus();
11157 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
11164 static PyObject
*_wrap_Style_getTitleFocus(PyObject
*self
, PyObject
*args
) {
11165 PyObject
*resultobj
;
11166 otk::Style
*arg1
= (otk::Style
*) 0 ;
11167 otk::BTexture
*result
;
11168 PyObject
* obj0
= 0 ;
11170 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getTitleFocus",&obj0
)) goto fail
;
11171 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11172 result
= (otk::BTexture
*)(arg1
)->getTitleFocus();
11174 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
11181 static PyObject
*_wrap_Style_getTitleUnfocus(PyObject
*self
, PyObject
*args
) {
11182 PyObject
*resultobj
;
11183 otk::Style
*arg1
= (otk::Style
*) 0 ;
11184 otk::BTexture
*result
;
11185 PyObject
* obj0
= 0 ;
11187 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getTitleUnfocus",&obj0
)) goto fail
;
11188 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11189 result
= (otk::BTexture
*)(arg1
)->getTitleUnfocus();
11191 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
11198 static PyObject
*_wrap_Style_getLabelFocus(PyObject
*self
, PyObject
*args
) {
11199 PyObject
*resultobj
;
11200 otk::Style
*arg1
= (otk::Style
*) 0 ;
11201 otk::BTexture
*result
;
11202 PyObject
* obj0
= 0 ;
11204 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getLabelFocus",&obj0
)) goto fail
;
11205 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11206 result
= (otk::BTexture
*)(arg1
)->getLabelFocus();
11208 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
11215 static PyObject
*_wrap_Style_getLabelUnfocus(PyObject
*self
, PyObject
*args
) {
11216 PyObject
*resultobj
;
11217 otk::Style
*arg1
= (otk::Style
*) 0 ;
11218 otk::BTexture
*result
;
11219 PyObject
* obj0
= 0 ;
11221 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getLabelUnfocus",&obj0
)) goto fail
;
11222 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11223 result
= (otk::BTexture
*)(arg1
)->getLabelUnfocus();
11225 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
11232 static PyObject
*_wrap_Style_getHandleFocus(PyObject
*self
, PyObject
*args
) {
11233 PyObject
*resultobj
;
11234 otk::Style
*arg1
= (otk::Style
*) 0 ;
11235 otk::BTexture
*result
;
11236 PyObject
* obj0
= 0 ;
11238 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getHandleFocus",&obj0
)) goto fail
;
11239 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11240 result
= (otk::BTexture
*)(arg1
)->getHandleFocus();
11242 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
11249 static PyObject
*_wrap_Style_getHandleUnfocus(PyObject
*self
, PyObject
*args
) {
11250 PyObject
*resultobj
;
11251 otk::Style
*arg1
= (otk::Style
*) 0 ;
11252 otk::BTexture
*result
;
11253 PyObject
* obj0
= 0 ;
11255 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getHandleUnfocus",&obj0
)) goto fail
;
11256 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11257 result
= (otk::BTexture
*)(arg1
)->getHandleUnfocus();
11259 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
11266 static PyObject
*_wrap_Style_getButtonFocus(PyObject
*self
, PyObject
*args
) {
11267 PyObject
*resultobj
;
11268 otk::Style
*arg1
= (otk::Style
*) 0 ;
11269 otk::BTexture
*result
;
11270 PyObject
* obj0
= 0 ;
11272 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getButtonFocus",&obj0
)) goto fail
;
11273 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11274 result
= (otk::BTexture
*)(arg1
)->getButtonFocus();
11276 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
11283 static PyObject
*_wrap_Style_getButtonUnfocus(PyObject
*self
, PyObject
*args
) {
11284 PyObject
*resultobj
;
11285 otk::Style
*arg1
= (otk::Style
*) 0 ;
11286 otk::BTexture
*result
;
11287 PyObject
* obj0
= 0 ;
11289 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getButtonUnfocus",&obj0
)) goto fail
;
11290 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11291 result
= (otk::BTexture
*)(arg1
)->getButtonUnfocus();
11293 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
11300 static PyObject
*_wrap_Style_getButtonPressedFocus(PyObject
*self
, PyObject
*args
) {
11301 PyObject
*resultobj
;
11302 otk::Style
*arg1
= (otk::Style
*) 0 ;
11303 otk::BTexture
*result
;
11304 PyObject
* obj0
= 0 ;
11306 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getButtonPressedFocus",&obj0
)) goto fail
;
11307 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11308 result
= (otk::BTexture
*)(arg1
)->getButtonPressedFocus();
11310 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
11317 static PyObject
*_wrap_Style_getButtonPressedUnfocus(PyObject
*self
, PyObject
*args
) {
11318 PyObject
*resultobj
;
11319 otk::Style
*arg1
= (otk::Style
*) 0 ;
11320 otk::BTexture
*result
;
11321 PyObject
* obj0
= 0 ;
11323 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getButtonPressedUnfocus",&obj0
)) goto fail
;
11324 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11325 result
= (otk::BTexture
*)(arg1
)->getButtonPressedUnfocus();
11327 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
11334 static PyObject
*_wrap_Style_getGripFocus(PyObject
*self
, PyObject
*args
) {
11335 PyObject
*resultobj
;
11336 otk::Style
*arg1
= (otk::Style
*) 0 ;
11337 otk::BTexture
*result
;
11338 PyObject
* obj0
= 0 ;
11340 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getGripFocus",&obj0
)) goto fail
;
11341 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11342 result
= (otk::BTexture
*)(arg1
)->getGripFocus();
11344 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
11351 static PyObject
*_wrap_Style_getGripUnfocus(PyObject
*self
, PyObject
*args
) {
11352 PyObject
*resultobj
;
11353 otk::Style
*arg1
= (otk::Style
*) 0 ;
11354 otk::BTexture
*result
;
11355 PyObject
* obj0
= 0 ;
11357 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getGripUnfocus",&obj0
)) goto fail
;
11358 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11359 result
= (otk::BTexture
*)(arg1
)->getGripUnfocus();
11361 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
11368 static PyObject
*_wrap_Style_getHandleWidth(PyObject
*self
, PyObject
*args
) {
11369 PyObject
*resultobj
;
11370 otk::Style
*arg1
= (otk::Style
*) 0 ;
11371 unsigned int result
;
11372 PyObject
* obj0
= 0 ;
11374 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getHandleWidth",&obj0
)) goto fail
;
11375 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11376 result
= (unsigned int)((otk::Style
const *)arg1
)->getHandleWidth();
11378 resultobj
= PyInt_FromLong((long)result
);
11385 static PyObject
*_wrap_Style_getBevelWidth(PyObject
*self
, PyObject
*args
) {
11386 PyObject
*resultobj
;
11387 otk::Style
*arg1
= (otk::Style
*) 0 ;
11388 unsigned int result
;
11389 PyObject
* obj0
= 0 ;
11391 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getBevelWidth",&obj0
)) goto fail
;
11392 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11393 result
= (unsigned int)((otk::Style
const *)arg1
)->getBevelWidth();
11395 resultobj
= PyInt_FromLong((long)result
);
11402 static PyObject
*_wrap_Style_getFrameWidth(PyObject
*self
, PyObject
*args
) {
11403 PyObject
*resultobj
;
11404 otk::Style
*arg1
= (otk::Style
*) 0 ;
11405 unsigned int result
;
11406 PyObject
* obj0
= 0 ;
11408 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getFrameWidth",&obj0
)) goto fail
;
11409 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11410 result
= (unsigned int)((otk::Style
const *)arg1
)->getFrameWidth();
11412 resultobj
= PyInt_FromLong((long)result
);
11419 static PyObject
*_wrap_Style_getBorderWidth(PyObject
*self
, PyObject
*args
) {
11420 PyObject
*resultobj
;
11421 otk::Style
*arg1
= (otk::Style
*) 0 ;
11422 unsigned int result
;
11423 PyObject
* obj0
= 0 ;
11425 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getBorderWidth",&obj0
)) goto fail
;
11426 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11427 result
= (unsigned int)((otk::Style
const *)arg1
)->getBorderWidth();
11429 resultobj
= PyInt_FromLong((long)result
);
11436 static PyObject
*_wrap_Style_getFont(PyObject
*self
, PyObject
*args
) {
11437 PyObject
*resultobj
;
11438 otk::Style
*arg1
= (otk::Style
*) 0 ;
11439 otk::BFont
*result
;
11440 PyObject
* obj0
= 0 ;
11442 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getFont",&obj0
)) goto fail
;
11443 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11444 result
= (otk::BFont
*)((otk::Style
const *)arg1
)->getFont();
11446 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BFont
, 0);
11453 static PyObject
*_wrap_Style_setShadowFonts(PyObject
*self
, PyObject
*args
) {
11454 PyObject
*resultobj
;
11455 otk::Style
*arg1
= (otk::Style
*) 0 ;
11457 PyObject
* obj0
= 0 ;
11458 PyObject
* obj1
= 0 ;
11460 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_setShadowFonts",&obj0
,&obj1
)) goto fail
;
11461 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11462 arg2
= (bool) PyInt_AsLong(obj1
);
11463 if (PyErr_Occurred()) SWIG_fail
;
11464 (arg1
)->setShadowFonts(arg2
);
11466 Py_INCREF(Py_None
); resultobj
= Py_None
;
11473 static PyObject
*_wrap_Style_hasShadowFonts(PyObject
*self
, PyObject
*args
) {
11474 PyObject
*resultobj
;
11475 otk::Style
*arg1
= (otk::Style
*) 0 ;
11477 PyObject
* obj0
= 0 ;
11479 if(!PyArg_ParseTuple(args
,(char *)"O:Style_hasShadowFonts",&obj0
)) goto fail
;
11480 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11481 result
= (bool)((otk::Style
const *)arg1
)->hasShadowFonts();
11483 resultobj
= PyInt_FromLong((long)result
);
11490 static PyObject
*_wrap_Style_setAAFonts(PyObject
*self
, PyObject
*args
) {
11491 PyObject
*resultobj
;
11492 otk::Style
*arg1
= (otk::Style
*) 0 ;
11494 PyObject
* obj0
= 0 ;
11495 PyObject
* obj1
= 0 ;
11497 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_setAAFonts",&obj0
,&obj1
)) goto fail
;
11498 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11499 arg2
= (bool) PyInt_AsLong(obj1
);
11500 if (PyErr_Occurred()) SWIG_fail
;
11501 (arg1
)->setAAFonts(arg2
);
11503 Py_INCREF(Py_None
); resultobj
= Py_None
;
11510 static PyObject
*_wrap_Style_hasAAFonts(PyObject
*self
, PyObject
*args
) {
11511 PyObject
*resultobj
;
11512 otk::Style
*arg1
= (otk::Style
*) 0 ;
11514 PyObject
* obj0
= 0 ;
11516 if(!PyArg_ParseTuple(args
,(char *)"O:Style_hasAAFonts",&obj0
)) goto fail
;
11517 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11518 result
= (bool)((otk::Style
const *)arg1
)->hasAAFonts();
11520 resultobj
= PyInt_FromLong((long)result
);
11527 static PyObject
*_wrap_Style_textJustify(PyObject
*self
, PyObject
*args
) {
11528 PyObject
*resultobj
;
11529 otk::Style
*arg1
= (otk::Style
*) 0 ;
11531 PyObject
* obj0
= 0 ;
11533 if(!PyArg_ParseTuple(args
,(char *)"O:Style_textJustify",&obj0
)) goto fail
;
11534 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11535 result
= (int)(arg1
)->textJustify();
11537 resultobj
= PyInt_FromLong((long)result
);
11544 static PyObject
*_wrap_Style_bulletType(PyObject
*self
, PyObject
*args
) {
11545 PyObject
*resultobj
;
11546 otk::Style
*arg1
= (otk::Style
*) 0 ;
11548 PyObject
* obj0
= 0 ;
11550 if(!PyArg_ParseTuple(args
,(char *)"O:Style_bulletType",&obj0
)) goto fail
;
11551 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11552 result
= (int)(arg1
)->bulletType();
11554 resultobj
= PyInt_FromLong((long)result
);
11561 static PyObject
*_wrap_Style_getBorderColor(PyObject
*self
, PyObject
*args
) {
11562 PyObject
*resultobj
;
11563 otk::Style
*arg1
= (otk::Style
*) 0 ;
11564 otk::BColor
*result
;
11565 PyObject
* obj0
= 0 ;
11567 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getBorderColor",&obj0
)) goto fail
;
11568 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11569 result
= (otk::BColor
*)((otk::Style
const *)arg1
)->getBorderColor();
11571 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
11578 static PyObject
*_wrap_Style_getFrameFocus(PyObject
*self
, PyObject
*args
) {
11579 PyObject
*resultobj
;
11580 otk::Style
*arg1
= (otk::Style
*) 0 ;
11581 otk::BTexture
*result
;
11582 PyObject
* obj0
= 0 ;
11584 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getFrameFocus",&obj0
)) goto fail
;
11585 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11586 result
= (otk::BTexture
*)((otk::Style
const *)arg1
)->getFrameFocus();
11588 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
11595 static PyObject
*_wrap_Style_getFrameUnfocus(PyObject
*self
, PyObject
*args
) {
11596 PyObject
*resultobj
;
11597 otk::Style
*arg1
= (otk::Style
*) 0 ;
11598 otk::BTexture
*result
;
11599 PyObject
* obj0
= 0 ;
11601 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getFrameUnfocus",&obj0
)) goto fail
;
11602 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11603 result
= (otk::BTexture
*)((otk::Style
const *)arg1
)->getFrameUnfocus();
11605 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 0);
11612 static PyObject
*_wrap_Style_setImageControl(PyObject
*self
, PyObject
*args
) {
11613 PyObject
*resultobj
;
11614 otk::Style
*arg1
= (otk::Style
*) 0 ;
11615 otk::BImageControl
*arg2
= (otk::BImageControl
*) 0 ;
11616 PyObject
* obj0
= 0 ;
11617 PyObject
* obj1
= 0 ;
11619 if(!PyArg_ParseTuple(args
,(char *)"OO:Style_setImageControl",&obj0
,&obj1
)) goto fail
;
11620 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11621 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11622 (arg1
)->setImageControl(arg2
);
11624 Py_INCREF(Py_None
); resultobj
= Py_None
;
11631 static PyObject
*_wrap_Style_getScreen(PyObject
*self
, PyObject
*args
) {
11632 PyObject
*resultobj
;
11633 otk::Style
*arg1
= (otk::Style
*) 0 ;
11634 unsigned int result
;
11635 PyObject
* obj0
= 0 ;
11637 if(!PyArg_ParseTuple(args
,(char *)"O:Style_getScreen",&obj0
)) goto fail
;
11638 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Style
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11639 result
= (unsigned int)(arg1
)->getScreen();
11641 resultobj
= PyInt_FromLong((long)result
);
11648 static PyObject
* Style_swigregister(PyObject
*self
, PyObject
*args
) {
11650 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
11651 SWIG_TypeClientData(SWIGTYPE_p_otk__Style
, obj
);
11653 return Py_BuildValue((char *)"");
11655 static PyObject
*_wrap_new_BTexture__SWIG_0(PyObject
*self
, PyObject
*args
) {
11656 PyObject
*resultobj
;
11657 unsigned int arg1
= (unsigned int) ~(0u) ;
11658 otk::BImageControl
*arg2
= (otk::BImageControl
*) 0 ;
11659 otk::BTexture
*result
;
11660 PyObject
* obj0
= 0 ;
11661 PyObject
* obj1
= 0 ;
11663 if(!PyArg_ParseTuple(args
,(char *)"|OO:new_BTexture",&obj0
,&obj1
)) goto fail
;
11665 arg1
= (unsigned int) PyInt_AsLong(obj0
);
11666 if (PyErr_Occurred()) SWIG_fail
;
11669 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11671 result
= (otk::BTexture
*)new otk::BTexture(arg1
,arg2
);
11673 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 1);
11680 static PyObject
*_wrap_new_BTexture__SWIG_1(PyObject
*self
, PyObject
*args
) {
11681 PyObject
*resultobj
;
11682 std::string
*arg1
= 0 ;
11683 unsigned int arg2
= (unsigned int) ~(0u) ;
11684 otk::BImageControl
*arg3
= (otk::BImageControl
*) 0 ;
11685 otk::BTexture
*result
;
11686 std::string temp1
;
11687 PyObject
* obj0
= 0 ;
11688 PyObject
* obj1
= 0 ;
11689 PyObject
* obj2
= 0 ;
11691 if(!PyArg_ParseTuple(args
,(char *)"O|OO:new_BTexture",&obj0
,&obj1
,&obj2
)) goto fail
;
11693 if (PyString_Check(obj0
)) {
11694 temp1
= std::string(PyString_AsString(obj0
));
11697 SWIG_exception(SWIG_TypeError
, "string expected");
11701 arg2
= (unsigned int) PyInt_AsLong(obj1
);
11702 if (PyErr_Occurred()) SWIG_fail
;
11705 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11707 result
= (otk::BTexture
*)new otk::BTexture((std::string
const &)*arg1
,arg2
,arg3
);
11709 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BTexture
, 1);
11716 static PyObject
*_wrap_new_BTexture(PyObject
*self
, PyObject
*args
) {
11721 argc
= PyObject_Length(args
);
11722 for (ii
= 0; (ii
< argc
) && (ii
< 3); ii
++) {
11723 argv
[ii
] = PyTuple_GetItem(args
,ii
);
11725 if ((argc
>= 0) && (argc
<= 2)) {
11728 return _wrap_new_BTexture__SWIG_0(self
,args
);
11731 _v
= (PyInt_Check(argv
[0]) || PyLong_Check(argv
[0])) ? 1 : 0;
11735 return _wrap_new_BTexture__SWIG_0(self
,args
);
11739 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_otk__BImageControl
, 0) == -1) {
11747 return _wrap_new_BTexture__SWIG_0(self
,args
);
11751 if ((argc
>= 1) && (argc
<= 3)) {
11754 _v
= PyString_Check(argv
[0]) ? 1 : 0;
11758 return _wrap_new_BTexture__SWIG_1(self
,args
);
11761 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
11765 return _wrap_new_BTexture__SWIG_1(self
,args
);
11769 if (SWIG_ConvertPtr(argv
[2], (void **) &ptr
, SWIGTYPE_p_otk__BImageControl
, 0) == -1) {
11777 return _wrap_new_BTexture__SWIG_1(self
,args
);
11783 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'new_BTexture'");
11788 static PyObject
*_wrap_BTexture_setColor(PyObject
*self
, PyObject
*args
) {
11789 PyObject
*resultobj
;
11790 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
11791 otk::BColor
*arg2
= 0 ;
11792 PyObject
* obj0
= 0 ;
11793 PyObject
* obj1
= 0 ;
11795 if(!PyArg_ParseTuple(args
,(char *)"OO:BTexture_setColor",&obj0
,&obj1
)) goto fail
;
11796 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11797 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11798 if (arg2
== NULL
) {
11799 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
11801 (arg1
)->setColor((otk::BColor
const &)*arg2
);
11803 Py_INCREF(Py_None
); resultobj
= Py_None
;
11810 static PyObject
*_wrap_BTexture_setColorTo(PyObject
*self
, PyObject
*args
) {
11811 PyObject
*resultobj
;
11812 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
11813 otk::BColor
*arg2
= 0 ;
11814 PyObject
* obj0
= 0 ;
11815 PyObject
* obj1
= 0 ;
11817 if(!PyArg_ParseTuple(args
,(char *)"OO:BTexture_setColorTo",&obj0
,&obj1
)) goto fail
;
11818 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11819 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11820 if (arg2
== NULL
) {
11821 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
11823 (arg1
)->setColorTo((otk::BColor
const &)*arg2
);
11825 Py_INCREF(Py_None
); resultobj
= Py_None
;
11832 static PyObject
*_wrap_BTexture_setBorderColor(PyObject
*self
, PyObject
*args
) {
11833 PyObject
*resultobj
;
11834 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
11835 otk::BColor
*arg2
= 0 ;
11836 PyObject
* obj0
= 0 ;
11837 PyObject
* obj1
= 0 ;
11839 if(!PyArg_ParseTuple(args
,(char *)"OO:BTexture_setBorderColor",&obj0
,&obj1
)) goto fail
;
11840 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11841 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BColor
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11842 if (arg2
== NULL
) {
11843 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
11845 (arg1
)->setBorderColor((otk::BColor
const &)*arg2
);
11847 Py_INCREF(Py_None
); resultobj
= Py_None
;
11854 static PyObject
*_wrap_BTexture_color(PyObject
*self
, PyObject
*args
) {
11855 PyObject
*resultobj
;
11856 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
11857 otk::BColor
*result
;
11858 PyObject
* obj0
= 0 ;
11860 if(!PyArg_ParseTuple(args
,(char *)"O:BTexture_color",&obj0
)) goto fail
;
11861 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11863 otk::BColor
const &_result_ref
= ((otk::BTexture
const *)arg1
)->color();
11864 result
= (otk::BColor
*) &_result_ref
;
11867 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
11874 static PyObject
*_wrap_BTexture_colorTo(PyObject
*self
, PyObject
*args
) {
11875 PyObject
*resultobj
;
11876 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
11877 otk::BColor
*result
;
11878 PyObject
* obj0
= 0 ;
11880 if(!PyArg_ParseTuple(args
,(char *)"O:BTexture_colorTo",&obj0
)) goto fail
;
11881 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11883 otk::BColor
const &_result_ref
= ((otk::BTexture
const *)arg1
)->colorTo();
11884 result
= (otk::BColor
*) &_result_ref
;
11887 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
11894 static PyObject
*_wrap_BTexture_lightColor(PyObject
*self
, PyObject
*args
) {
11895 PyObject
*resultobj
;
11896 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
11897 otk::BColor
*result
;
11898 PyObject
* obj0
= 0 ;
11900 if(!PyArg_ParseTuple(args
,(char *)"O:BTexture_lightColor",&obj0
)) goto fail
;
11901 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11903 otk::BColor
const &_result_ref
= ((otk::BTexture
const *)arg1
)->lightColor();
11904 result
= (otk::BColor
*) &_result_ref
;
11907 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
11914 static PyObject
*_wrap_BTexture_shadowColor(PyObject
*self
, PyObject
*args
) {
11915 PyObject
*resultobj
;
11916 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
11917 otk::BColor
*result
;
11918 PyObject
* obj0
= 0 ;
11920 if(!PyArg_ParseTuple(args
,(char *)"O:BTexture_shadowColor",&obj0
)) goto fail
;
11921 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11923 otk::BColor
const &_result_ref
= ((otk::BTexture
const *)arg1
)->shadowColor();
11924 result
= (otk::BColor
*) &_result_ref
;
11927 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
11934 static PyObject
*_wrap_BTexture_borderColor(PyObject
*self
, PyObject
*args
) {
11935 PyObject
*resultobj
;
11936 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
11937 otk::BColor
*result
;
11938 PyObject
* obj0
= 0 ;
11940 if(!PyArg_ParseTuple(args
,(char *)"O:BTexture_borderColor",&obj0
)) goto fail
;
11941 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11943 otk::BColor
const &_result_ref
= ((otk::BTexture
const *)arg1
)->borderColor();
11944 result
= (otk::BColor
*) &_result_ref
;
11947 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__BColor
, 0);
11954 static PyObject
*_wrap_BTexture_texture(PyObject
*self
, PyObject
*args
) {
11955 PyObject
*resultobj
;
11956 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
11957 unsigned long result
;
11958 PyObject
* obj0
= 0 ;
11960 if(!PyArg_ParseTuple(args
,(char *)"O:BTexture_texture",&obj0
)) goto fail
;
11961 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11962 result
= (unsigned long)((otk::BTexture
const *)arg1
)->texture();
11964 resultobj
= PyInt_FromLong((long)result
);
11971 static PyObject
*_wrap_BTexture_setTexture(PyObject
*self
, PyObject
*args
) {
11972 PyObject
*resultobj
;
11973 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
11974 unsigned long arg2
;
11975 PyObject
* obj0
= 0 ;
11976 PyObject
* obj1
= 0 ;
11978 if(!PyArg_ParseTuple(args
,(char *)"OO:BTexture_setTexture",&obj0
,&obj1
)) goto fail
;
11979 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11980 arg2
= (unsigned long) PyInt_AsLong(obj1
);
11981 if (PyErr_Occurred()) SWIG_fail
;
11982 (arg1
)->setTexture(arg2
);
11984 Py_INCREF(Py_None
); resultobj
= Py_None
;
11991 static PyObject
*_wrap_BTexture_addTexture(PyObject
*self
, PyObject
*args
) {
11992 PyObject
*resultobj
;
11993 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
11994 unsigned long arg2
;
11995 PyObject
* obj0
= 0 ;
11996 PyObject
* obj1
= 0 ;
11998 if(!PyArg_ParseTuple(args
,(char *)"OO:BTexture_addTexture",&obj0
,&obj1
)) goto fail
;
11999 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12000 arg2
= (unsigned long) PyInt_AsLong(obj1
);
12001 if (PyErr_Occurred()) SWIG_fail
;
12002 (arg1
)->addTexture(arg2
);
12004 Py_INCREF(Py_None
); resultobj
= Py_None
;
12011 static PyObject
*_wrap_BTexture_equals(PyObject
*self
, PyObject
*args
) {
12012 PyObject
*resultobj
;
12013 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
12014 otk::BTexture
*arg2
= 0 ;
12016 PyObject
* obj0
= 0 ;
12017 PyObject
* obj1
= 0 ;
12019 if(!PyArg_ParseTuple(args
,(char *)"OO:BTexture_equals",&obj0
,&obj1
)) goto fail
;
12020 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12021 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12022 if (arg2
== NULL
) {
12023 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
12025 result
= (bool)(arg1
)->operator ==((otk::BTexture
const &)*arg2
);
12027 resultobj
= PyInt_FromLong((long)result
);
12034 static PyObject
*_wrap_BTexture_screen(PyObject
*self
, PyObject
*args
) {
12035 PyObject
*resultobj
;
12036 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
12037 unsigned int result
;
12038 PyObject
* obj0
= 0 ;
12040 if(!PyArg_ParseTuple(args
,(char *)"O:BTexture_screen",&obj0
)) goto fail
;
12041 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12042 result
= (unsigned int)((otk::BTexture
const *)arg1
)->screen();
12044 resultobj
= PyInt_FromLong((long)result
);
12051 static PyObject
*_wrap_BTexture_setScreen(PyObject
*self
, PyObject
*args
) {
12052 PyObject
*resultobj
;
12053 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
12054 unsigned int arg2
;
12055 PyObject
* obj0
= 0 ;
12056 PyObject
* obj1
= 0 ;
12058 if(!PyArg_ParseTuple(args
,(char *)"OO:BTexture_setScreen",&obj0
,&obj1
)) goto fail
;
12059 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12060 arg2
= (unsigned int) PyInt_AsLong(obj1
);
12061 if (PyErr_Occurred()) SWIG_fail
;
12062 (arg1
)->setScreen(arg2
);
12064 Py_INCREF(Py_None
); resultobj
= Py_None
;
12071 static PyObject
*_wrap_BTexture_setImageControl(PyObject
*self
, PyObject
*args
) {
12072 PyObject
*resultobj
;
12073 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
12074 otk::BImageControl
*arg2
= (otk::BImageControl
*) 0 ;
12075 PyObject
* obj0
= 0 ;
12076 PyObject
* obj1
= 0 ;
12078 if(!PyArg_ParseTuple(args
,(char *)"OO:BTexture_setImageControl",&obj0
,&obj1
)) goto fail
;
12079 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12080 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__BImageControl
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12081 (arg1
)->setImageControl(arg2
);
12083 Py_INCREF(Py_None
); resultobj
= Py_None
;
12090 static PyObject
*_wrap_BTexture_description(PyObject
*self
, PyObject
*args
) {
12091 PyObject
*resultobj
;
12092 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
12093 std::string
*result
;
12094 PyObject
* obj0
= 0 ;
12096 if(!PyArg_ParseTuple(args
,(char *)"O:BTexture_description",&obj0
)) goto fail
;
12097 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12099 std::string
const &_result_ref
= ((otk::BTexture
const *)arg1
)->description();
12100 result
= (std::string
*) &_result_ref
;
12104 resultobj
= PyString_FromString(result
->c_str());
12112 static PyObject
*_wrap_BTexture_setDescription(PyObject
*self
, PyObject
*args
) {
12113 PyObject
*resultobj
;
12114 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
12115 std::string
*arg2
= 0 ;
12116 std::string temp2
;
12117 PyObject
* obj0
= 0 ;
12118 PyObject
* obj1
= 0 ;
12120 if(!PyArg_ParseTuple(args
,(char *)"OO:BTexture_setDescription",&obj0
,&obj1
)) goto fail
;
12121 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12123 if (PyString_Check(obj1
)) {
12124 temp2
= std::string(PyString_AsString(obj1
));
12127 SWIG_exception(SWIG_TypeError
, "string expected");
12130 (arg1
)->setDescription((std::string
const &)*arg2
);
12132 Py_INCREF(Py_None
); resultobj
= Py_None
;
12139 static PyObject
*_wrap_BTexture_render(PyObject
*self
, PyObject
*args
) {
12140 PyObject
*resultobj
;
12141 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
12142 unsigned int arg2
;
12143 unsigned int arg3
;
12144 Pixmap arg4
= (Pixmap
) (Pixmap
)0 ;
12147 PyObject
* obj0
= 0 ;
12148 PyObject
* obj1
= 0 ;
12149 PyObject
* obj2
= 0 ;
12150 PyObject
* obj3
= 0 ;
12152 if(!PyArg_ParseTuple(args
,(char *)"OOO|O:BTexture_render",&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
12153 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12154 arg2
= (unsigned int) PyInt_AsLong(obj1
);
12155 if (PyErr_Occurred()) SWIG_fail
;
12156 arg3
= (unsigned int) PyInt_AsLong(obj2
);
12157 if (PyErr_Occurred()) SWIG_fail
;
12159 if ((SWIG_ConvertPtr(obj3
,(void **) &argp4
, SWIGTYPE_p_Pixmap
,SWIG_POINTER_EXCEPTION
) == -1)) SWIG_fail
;
12162 result
= (arg1
)->render(arg2
,arg3
,arg4
);
12165 Pixmap
* resultptr
;
12166 resultptr
= new Pixmap((Pixmap
&) result
);
12167 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_Pixmap
, 1);
12175 static PyObject
*_wrap_delete_BTexture(PyObject
*self
, PyObject
*args
) {
12176 PyObject
*resultobj
;
12177 otk::BTexture
*arg1
= (otk::BTexture
*) 0 ;
12178 PyObject
* obj0
= 0 ;
12180 if(!PyArg_ParseTuple(args
,(char *)"O:delete_BTexture",&obj0
)) goto fail
;
12181 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__BTexture
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12184 Py_INCREF(Py_None
); resultobj
= Py_None
;
12191 static PyObject
* BTexture_swigregister(PyObject
*self
, PyObject
*args
) {
12193 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
12194 SWIG_TypeClientData(SWIGTYPE_p_otk__BTexture
, obj
);
12196 return Py_BuildValue((char *)"");
12198 static PyObject
*_wrap_new_OBTimer(PyObject
*self
, PyObject
*args
) {
12199 PyObject
*resultobj
;
12200 otk::OBTimerQueueManager
*arg1
= (otk::OBTimerQueueManager
*) 0 ;
12201 otk::OBTimeoutHandler arg2
= (otk::OBTimeoutHandler
) 0 ;
12202 otk::OBTimeoutData arg3
= (otk::OBTimeoutData
) 0 ;
12203 otk::OBTimer
*result
;
12204 PyObject
* obj0
= 0 ;
12205 PyObject
* obj1
= 0 ;
12206 PyObject
* obj2
= 0 ;
12208 if(!PyArg_ParseTuple(args
,(char *)"OOO:new_OBTimer",&obj0
,&obj1
,&obj2
)) goto fail
;
12209 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimerQueueManager
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12210 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_otk__OBTimeoutHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12211 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, 0, SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12212 result
= (otk::OBTimer
*)new otk::OBTimer(arg1
,arg2
,arg3
);
12214 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__OBTimer
, 1);
12221 static PyObject
*_wrap_delete_OBTimer(PyObject
*self
, PyObject
*args
) {
12222 PyObject
*resultobj
;
12223 otk::OBTimer
*arg1
= (otk::OBTimer
*) 0 ;
12224 PyObject
* obj0
= 0 ;
12226 if(!PyArg_ParseTuple(args
,(char *)"O:delete_OBTimer",&obj0
)) goto fail
;
12227 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimer
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12230 Py_INCREF(Py_None
); resultobj
= Py_None
;
12237 static PyObject
*_wrap_OBTimer_fire(PyObject
*self
, PyObject
*args
) {
12238 PyObject
*resultobj
;
12239 otk::OBTimer
*arg1
= (otk::OBTimer
*) 0 ;
12240 PyObject
* obj0
= 0 ;
12242 if(!PyArg_ParseTuple(args
,(char *)"O:OBTimer_fire",&obj0
)) goto fail
;
12243 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimer
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12246 Py_INCREF(Py_None
); resultobj
= Py_None
;
12253 static PyObject
*_wrap_OBTimer_timing(PyObject
*self
, PyObject
*args
) {
12254 PyObject
*resultobj
;
12255 otk::OBTimer
*arg1
= (otk::OBTimer
*) 0 ;
12257 PyObject
* obj0
= 0 ;
12259 if(!PyArg_ParseTuple(args
,(char *)"O:OBTimer_timing",&obj0
)) goto fail
;
12260 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimer
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12261 result
= (bool)((otk::OBTimer
const *)arg1
)->timing();
12263 resultobj
= PyInt_FromLong((long)result
);
12270 static PyObject
*_wrap_OBTimer_recurring(PyObject
*self
, PyObject
*args
) {
12271 PyObject
*resultobj
;
12272 otk::OBTimer
*arg1
= (otk::OBTimer
*) 0 ;
12274 PyObject
* obj0
= 0 ;
12276 if(!PyArg_ParseTuple(args
,(char *)"O:OBTimer_recurring",&obj0
)) goto fail
;
12277 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimer
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12278 result
= (bool)((otk::OBTimer
const *)arg1
)->recurring();
12280 resultobj
= PyInt_FromLong((long)result
);
12287 static PyObject
*_wrap_OBTimer_timeout(PyObject
*self
, PyObject
*args
) {
12288 PyObject
*resultobj
;
12289 otk::OBTimer
*arg1
= (otk::OBTimer
*) 0 ;
12291 PyObject
* obj0
= 0 ;
12293 if(!PyArg_ParseTuple(args
,(char *)"O:OBTimer_timeout",&obj0
)) goto fail
;
12294 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimer
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12296 timeval
const &_result_ref
= ((otk::OBTimer
const *)arg1
)->timeout();
12297 result
= (timeval
*) &_result_ref
;
12300 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_timeval
, 0);
12307 static PyObject
*_wrap_OBTimer_startTime(PyObject
*self
, PyObject
*args
) {
12308 PyObject
*resultobj
;
12309 otk::OBTimer
*arg1
= (otk::OBTimer
*) 0 ;
12311 PyObject
* obj0
= 0 ;
12313 if(!PyArg_ParseTuple(args
,(char *)"O:OBTimer_startTime",&obj0
)) goto fail
;
12314 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimer
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12316 timeval
const &_result_ref
= ((otk::OBTimer
const *)arg1
)->startTime();
12317 result
= (timeval
*) &_result_ref
;
12320 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_timeval
, 0);
12327 static PyObject
*_wrap_OBTimer_remainingTime(PyObject
*self
, PyObject
*args
) {
12328 PyObject
*resultobj
;
12329 otk::OBTimer
*arg1
= (otk::OBTimer
*) 0 ;
12330 timeval
*arg2
= 0 ;
12332 PyObject
* obj0
= 0 ;
12333 PyObject
* obj1
= 0 ;
12335 if(!PyArg_ParseTuple(args
,(char *)"OO:OBTimer_remainingTime",&obj0
,&obj1
)) goto fail
;
12336 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimer
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12337 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_timeval
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12338 if (arg2
== NULL
) {
12339 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
12341 result
= ((otk::OBTimer
const *)arg1
)->remainingTime((timeval
const &)*arg2
);
12344 timeval
* resultptr
;
12345 resultptr
= new timeval((timeval
&) result
);
12346 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_timeval
, 1);
12354 static PyObject
*_wrap_OBTimer_shouldFire(PyObject
*self
, PyObject
*args
) {
12355 PyObject
*resultobj
;
12356 otk::OBTimer
*arg1
= (otk::OBTimer
*) 0 ;
12357 timeval
*arg2
= 0 ;
12359 PyObject
* obj0
= 0 ;
12360 PyObject
* obj1
= 0 ;
12362 if(!PyArg_ParseTuple(args
,(char *)"OO:OBTimer_shouldFire",&obj0
,&obj1
)) goto fail
;
12363 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimer
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12364 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_timeval
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12365 if (arg2
== NULL
) {
12366 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
12368 result
= (bool)((otk::OBTimer
const *)arg1
)->shouldFire((timeval
const &)*arg2
);
12370 resultobj
= PyInt_FromLong((long)result
);
12377 static PyObject
*_wrap_OBTimer_endTime(PyObject
*self
, PyObject
*args
) {
12378 PyObject
*resultobj
;
12379 otk::OBTimer
*arg1
= (otk::OBTimer
*) 0 ;
12381 PyObject
* obj0
= 0 ;
12383 if(!PyArg_ParseTuple(args
,(char *)"O:OBTimer_endTime",&obj0
)) goto fail
;
12384 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimer
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12385 result
= ((otk::OBTimer
const *)arg1
)->endTime();
12388 timeval
* resultptr
;
12389 resultptr
= new timeval((timeval
&) result
);
12390 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_timeval
, 1);
12398 static PyObject
*_wrap_OBTimer_setRecurring(PyObject
*self
, PyObject
*args
) {
12399 PyObject
*resultobj
;
12400 otk::OBTimer
*arg1
= (otk::OBTimer
*) 0 ;
12402 PyObject
* obj0
= 0 ;
12403 PyObject
* obj1
= 0 ;
12405 if(!PyArg_ParseTuple(args
,(char *)"OO:OBTimer_setRecurring",&obj0
,&obj1
)) goto fail
;
12406 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimer
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12407 arg2
= (bool) PyInt_AsLong(obj1
);
12408 if (PyErr_Occurred()) SWIG_fail
;
12409 (arg1
)->setRecurring(arg2
);
12411 Py_INCREF(Py_None
); resultobj
= Py_None
;
12418 static PyObject
*_wrap_OBTimer_setTimeout__SWIG_0(PyObject
*self
, PyObject
*args
) {
12419 PyObject
*resultobj
;
12420 otk::OBTimer
*arg1
= (otk::OBTimer
*) 0 ;
12422 PyObject
* obj0
= 0 ;
12424 if(!PyArg_ParseTuple(args
,(char *)"Ol:OBTimer_setTimeout",&obj0
,&arg2
)) goto fail
;
12425 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimer
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12426 (arg1
)->setTimeout(arg2
);
12428 Py_INCREF(Py_None
); resultobj
= Py_None
;
12435 static PyObject
*_wrap_OBTimer_setTimeout__SWIG_1(PyObject
*self
, PyObject
*args
) {
12436 PyObject
*resultobj
;
12437 otk::OBTimer
*arg1
= (otk::OBTimer
*) 0 ;
12438 timeval
*arg2
= 0 ;
12439 PyObject
* obj0
= 0 ;
12440 PyObject
* obj1
= 0 ;
12442 if(!PyArg_ParseTuple(args
,(char *)"OO:OBTimer_setTimeout",&obj0
,&obj1
)) goto fail
;
12443 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimer
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12444 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_timeval
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12445 if (arg2
== NULL
) {
12446 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
12448 (arg1
)->setTimeout((timeval
const &)*arg2
);
12450 Py_INCREF(Py_None
); resultobj
= Py_None
;
12457 static PyObject
*_wrap_OBTimer_setTimeout(PyObject
*self
, PyObject
*args
) {
12462 argc
= PyObject_Length(args
);
12463 for (ii
= 0; (ii
< argc
) && (ii
< 2); ii
++) {
12464 argv
[ii
] = PyTuple_GetItem(args
,ii
);
12470 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OBTimer
, 0) == -1) {
12480 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_timeval
, 0) == -1) {
12488 return _wrap_OBTimer_setTimeout__SWIG_1(self
,args
);
12496 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__OBTimer
, 0) == -1) {
12505 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
12508 return _wrap_OBTimer_setTimeout__SWIG_0(self
,args
);
12513 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'OBTimer_setTimeout'");
12518 static PyObject
*_wrap_OBTimer_start(PyObject
*self
, PyObject
*args
) {
12519 PyObject
*resultobj
;
12520 otk::OBTimer
*arg1
= (otk::OBTimer
*) 0 ;
12521 PyObject
* obj0
= 0 ;
12523 if(!PyArg_ParseTuple(args
,(char *)"O:OBTimer_start",&obj0
)) goto fail
;
12524 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimer
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12527 Py_INCREF(Py_None
); resultobj
= Py_None
;
12534 static PyObject
*_wrap_OBTimer_stop(PyObject
*self
, PyObject
*args
) {
12535 PyObject
*resultobj
;
12536 otk::OBTimer
*arg1
= (otk::OBTimer
*) 0 ;
12537 PyObject
* obj0
= 0 ;
12539 if(!PyArg_ParseTuple(args
,(char *)"O:OBTimer_stop",&obj0
)) goto fail
;
12540 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimer
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12543 Py_INCREF(Py_None
); resultobj
= Py_None
;
12550 static PyObject
* OBTimer_swigregister(PyObject
*self
, PyObject
*args
) {
12552 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
12553 SWIG_TypeClientData(SWIGTYPE_p_otk__OBTimer
, obj
);
12555 return Py_BuildValue((char *)"");
12557 static PyObject
*_wrap_new_OBTimerQueueManager(PyObject
*self
, PyObject
*args
) {
12558 PyObject
*resultobj
;
12559 otk::OBTimerQueueManager
*result
;
12561 if(!PyArg_ParseTuple(args
,(char *)":new_OBTimerQueueManager")) goto fail
;
12562 result
= (otk::OBTimerQueueManager
*)new otk::OBTimerQueueManager();
12564 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__OBTimerQueueManager
, 1);
12571 static PyObject
*_wrap_delete_OBTimerQueueManager(PyObject
*self
, PyObject
*args
) {
12572 PyObject
*resultobj
;
12573 otk::OBTimerQueueManager
*arg1
= (otk::OBTimerQueueManager
*) 0 ;
12574 PyObject
* obj0
= 0 ;
12576 if(!PyArg_ParseTuple(args
,(char *)"O:delete_OBTimerQueueManager",&obj0
)) goto fail
;
12577 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimerQueueManager
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12580 Py_INCREF(Py_None
); resultobj
= Py_None
;
12587 static PyObject
*_wrap_OBTimerQueueManager_fire(PyObject
*self
, PyObject
*args
) {
12588 PyObject
*resultobj
;
12589 otk::OBTimerQueueManager
*arg1
= (otk::OBTimerQueueManager
*) 0 ;
12590 PyObject
* obj0
= 0 ;
12592 if(!PyArg_ParseTuple(args
,(char *)"O:OBTimerQueueManager_fire",&obj0
)) goto fail
;
12593 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimerQueueManager
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12596 Py_INCREF(Py_None
); resultobj
= Py_None
;
12603 static PyObject
*_wrap_OBTimerQueueManager_addTimer(PyObject
*self
, PyObject
*args
) {
12604 PyObject
*resultobj
;
12605 otk::OBTimerQueueManager
*arg1
= (otk::OBTimerQueueManager
*) 0 ;
12606 otk::OBTimer
*arg2
= (otk::OBTimer
*) 0 ;
12607 PyObject
* obj0
= 0 ;
12608 PyObject
* obj1
= 0 ;
12610 if(!PyArg_ParseTuple(args
,(char *)"OO:OBTimerQueueManager_addTimer",&obj0
,&obj1
)) goto fail
;
12611 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimerQueueManager
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12612 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__OBTimer
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12613 (arg1
)->addTimer(arg2
);
12615 Py_INCREF(Py_None
); resultobj
= Py_None
;
12622 static PyObject
*_wrap_OBTimerQueueManager_removeTimer(PyObject
*self
, PyObject
*args
) {
12623 PyObject
*resultobj
;
12624 otk::OBTimerQueueManager
*arg1
= (otk::OBTimerQueueManager
*) 0 ;
12625 otk::OBTimer
*arg2
= (otk::OBTimer
*) 0 ;
12626 PyObject
* obj0
= 0 ;
12627 PyObject
* obj1
= 0 ;
12629 if(!PyArg_ParseTuple(args
,(char *)"OO:OBTimerQueueManager_removeTimer",&obj0
,&obj1
)) goto fail
;
12630 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__OBTimerQueueManager
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12631 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__OBTimer
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12632 (arg1
)->removeTimer(arg2
);
12634 Py_INCREF(Py_None
); resultobj
= Py_None
;
12641 static PyObject
* OBTimerQueueManager_swigregister(PyObject
*self
, PyObject
*args
) {
12643 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
12644 SWIG_TypeClientData(SWIGTYPE_p_otk__OBTimerQueueManager
, obj
);
12646 return Py_BuildValue((char *)"");
12648 static int _wrap_BSENTINEL_set(PyObject
*_val
) {
12649 PyErr_SetString(PyExc_TypeError
,"Variable BSENTINEL is read-only.");
12654 static PyObject
*_wrap_BSENTINEL_get() {
12657 pyobj
= PyInt_FromLong((long)otk::BSENTINEL
);
12662 static PyObject
*_wrap_expandTilde(PyObject
*self
, PyObject
*args
) {
12663 PyObject
*resultobj
;
12664 std::string
*arg1
= 0 ;
12665 std::string result
;
12666 std::string temp1
;
12667 PyObject
* obj0
= 0 ;
12669 if(!PyArg_ParseTuple(args
,(char *)"O:expandTilde",&obj0
)) goto fail
;
12671 if (PyString_Check(obj0
)) {
12672 temp1
= std::string(PyString_AsString(obj0
));
12675 SWIG_exception(SWIG_TypeError
, "string expected");
12678 result
= otk::expandTilde((std::string
const &)*arg1
);
12681 resultobj
= PyString_FromString((&result
)->c_str());
12689 static PyObject
*_wrap_bexec(PyObject
*self
, PyObject
*args
) {
12690 PyObject
*resultobj
;
12691 std::string
*arg1
= 0 ;
12692 std::string
*arg2
= 0 ;
12693 std::string temp1
;
12694 std::string temp2
;
12695 PyObject
* obj0
= 0 ;
12696 PyObject
* obj1
= 0 ;
12698 if(!PyArg_ParseTuple(args
,(char *)"OO:bexec",&obj0
,&obj1
)) goto fail
;
12700 if (PyString_Check(obj0
)) {
12701 temp1
= std::string(PyString_AsString(obj0
));
12704 SWIG_exception(SWIG_TypeError
, "string expected");
12708 if (PyString_Check(obj1
)) {
12709 temp2
= std::string(PyString_AsString(obj1
));
12712 SWIG_exception(SWIG_TypeError
, "string expected");
12715 otk::bexec((std::string
const &)*arg1
,(std::string
const &)*arg2
);
12717 Py_INCREF(Py_None
); resultobj
= Py_None
;
12724 static PyObject
*_wrap_textPropertyToString(PyObject
*self
, PyObject
*args
) {
12725 PyObject
*resultobj
;
12726 Display
*arg1
= (Display
*) 0 ;
12727 XTextProperty
*arg2
= 0 ;
12728 std::string result
;
12729 PyObject
* obj0
= 0 ;
12730 PyObject
* obj1
= 0 ;
12732 if(!PyArg_ParseTuple(args
,(char *)"OO:textPropertyToString",&obj0
,&obj1
)) goto fail
;
12733 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_Display
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12734 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XTextProperty
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
12735 if (arg2
== NULL
) {
12736 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
12738 result
= otk::textPropertyToString(arg1
,*arg2
);
12741 resultobj
= PyString_FromString((&result
)->c_str());
12749 static PyObject
*_wrap_itostring_unsigned_long(PyObject
*self
, PyObject
*args
) {
12750 PyObject
*resultobj
;
12751 unsigned long arg1
;
12752 std::string result
;
12753 PyObject
* obj0
= 0 ;
12755 if(!PyArg_ParseTuple(args
,(char *)"O:itostring_unsigned_long",&obj0
)) goto fail
;
12756 arg1
= (unsigned long) PyInt_AsLong(obj0
);
12757 if (PyErr_Occurred()) SWIG_fail
;
12758 result
= otk::itostring(arg1
);
12761 resultobj
= PyString_FromString((&result
)->c_str());
12769 static PyObject
*_wrap_itostring_long(PyObject
*self
, PyObject
*args
) {
12770 PyObject
*resultobj
;
12772 std::string result
;
12774 if(!PyArg_ParseTuple(args
,(char *)"l:itostring_long",&arg1
)) goto fail
;
12775 result
= otk::itostring(arg1
);
12778 resultobj
= PyString_FromString((&result
)->c_str());
12786 static PyObject
*_wrap_itostring_unsigned(PyObject
*self
, PyObject
*args
) {
12787 PyObject
*resultobj
;
12788 unsigned int arg1
;
12789 std::string result
;
12790 PyObject
* obj0
= 0 ;
12792 if(!PyArg_ParseTuple(args
,(char *)"O:itostring_unsigned",&obj0
)) goto fail
;
12793 arg1
= (unsigned int) PyInt_AsLong(obj0
);
12794 if (PyErr_Occurred()) SWIG_fail
;
12795 result
= otk::itostring(arg1
);
12798 resultobj
= PyString_FromString((&result
)->c_str());
12806 static PyObject
*_wrap_itostring(PyObject
*self
, PyObject
*args
) {
12807 PyObject
*resultobj
;
12809 std::string result
;
12811 if(!PyArg_ParseTuple(args
,(char *)"i:itostring",&arg1
)) goto fail
;
12812 result
= otk::itostring(arg1
);
12815 resultobj
= PyString_FromString((&result
)->c_str());
12823 static PyObject
*_wrap_basename(PyObject
*self
, PyObject
*args
) {
12824 PyObject
*resultobj
;
12825 std::string
*arg1
= 0 ;
12826 std::string result
;
12827 std::string temp1
;
12828 PyObject
* obj0
= 0 ;
12830 if(!PyArg_ParseTuple(args
,(char *)"O:basename",&obj0
)) goto fail
;
12832 if (PyString_Check(obj0
)) {
12833 temp1
= std::string(PyString_AsString(obj0
));
12836 SWIG_exception(SWIG_TypeError
, "string expected");
12839 result
= otk::basename((std::string
const &)*arg1
);
12842 resultobj
= PyString_FromString((&result
)->c_str());
12850 static PyMethodDef SwigMethods
[] = {
12851 { (char *)"new_OtkEventDispatcher", _wrap_new_OtkEventDispatcher
, METH_VARARGS
},
12852 { (char *)"delete_OtkEventDispatcher", _wrap_delete_OtkEventDispatcher
, METH_VARARGS
},
12853 { (char *)"OtkEventDispatcher_clearAllHandlers", _wrap_OtkEventDispatcher_clearAllHandlers
, METH_VARARGS
},
12854 { (char *)"OtkEventDispatcher_registerHandler", _wrap_OtkEventDispatcher_registerHandler
, METH_VARARGS
},
12855 { (char *)"OtkEventDispatcher_clearHandler", _wrap_OtkEventDispatcher_clearHandler
, METH_VARARGS
},
12856 { (char *)"OtkEventDispatcher_dispatchEvents", _wrap_OtkEventDispatcher_dispatchEvents
, METH_VARARGS
},
12857 { (char *)"OtkEventDispatcher_setFallbackHandler", _wrap_OtkEventDispatcher_setFallbackHandler
, METH_VARARGS
},
12858 { (char *)"OtkEventDispatcher_getFallbackHandler", _wrap_OtkEventDispatcher_getFallbackHandler
, METH_VARARGS
},
12859 { (char *)"OtkEventDispatcher_setMasterHandler", _wrap_OtkEventDispatcher_setMasterHandler
, METH_VARARGS
},
12860 { (char *)"OtkEventDispatcher_getMasterHandler", _wrap_OtkEventDispatcher_getMasterHandler
, METH_VARARGS
},
12861 { (char *)"OtkEventDispatcher_findHandler", _wrap_OtkEventDispatcher_findHandler
, METH_VARARGS
},
12862 { (char *)"OtkEventDispatcher_lastTime", _wrap_OtkEventDispatcher_lastTime
, METH_VARARGS
},
12863 { (char *)"OtkEventDispatcher_swigregister", OtkEventDispatcher_swigregister
, METH_VARARGS
},
12864 { (char *)"OtkEventHandler_handle", _wrap_OtkEventHandler_handle
, METH_VARARGS
},
12865 { (char *)"OtkEventHandler_keyPressHandler", _wrap_OtkEventHandler_keyPressHandler
, METH_VARARGS
},
12866 { (char *)"OtkEventHandler_keyReleaseHandler", _wrap_OtkEventHandler_keyReleaseHandler
, METH_VARARGS
},
12867 { (char *)"OtkEventHandler_buttonPressHandler", _wrap_OtkEventHandler_buttonPressHandler
, METH_VARARGS
},
12868 { (char *)"OtkEventHandler_buttonReleaseHandler", _wrap_OtkEventHandler_buttonReleaseHandler
, METH_VARARGS
},
12869 { (char *)"OtkEventHandler_motionHandler", _wrap_OtkEventHandler_motionHandler
, METH_VARARGS
},
12870 { (char *)"OtkEventHandler_enterHandler", _wrap_OtkEventHandler_enterHandler
, METH_VARARGS
},
12871 { (char *)"OtkEventHandler_leaveHandler", _wrap_OtkEventHandler_leaveHandler
, METH_VARARGS
},
12872 { (char *)"OtkEventHandler_focusHandler", _wrap_OtkEventHandler_focusHandler
, METH_VARARGS
},
12873 { (char *)"OtkEventHandler_unfocusHandler", _wrap_OtkEventHandler_unfocusHandler
, METH_VARARGS
},
12874 { (char *)"OtkEventHandler_exposeHandler", _wrap_OtkEventHandler_exposeHandler
, METH_VARARGS
},
12875 { (char *)"OtkEventHandler_graphicsExposeHandler", _wrap_OtkEventHandler_graphicsExposeHandler
, METH_VARARGS
},
12876 { (char *)"OtkEventHandler_noExposeEventHandler", _wrap_OtkEventHandler_noExposeEventHandler
, METH_VARARGS
},
12877 { (char *)"OtkEventHandler_circulateRequestHandler", _wrap_OtkEventHandler_circulateRequestHandler
, METH_VARARGS
},
12878 { (char *)"OtkEventHandler_configureRequestHandler", _wrap_OtkEventHandler_configureRequestHandler
, METH_VARARGS
},
12879 { (char *)"OtkEventHandler_mapRequestHandler", _wrap_OtkEventHandler_mapRequestHandler
, METH_VARARGS
},
12880 { (char *)"OtkEventHandler_resizeRequestHandler", _wrap_OtkEventHandler_resizeRequestHandler
, METH_VARARGS
},
12881 { (char *)"OtkEventHandler_circulateHandler", _wrap_OtkEventHandler_circulateHandler
, METH_VARARGS
},
12882 { (char *)"OtkEventHandler_configureHandler", _wrap_OtkEventHandler_configureHandler
, METH_VARARGS
},
12883 { (char *)"OtkEventHandler_createHandler", _wrap_OtkEventHandler_createHandler
, METH_VARARGS
},
12884 { (char *)"OtkEventHandler_destroyHandler", _wrap_OtkEventHandler_destroyHandler
, METH_VARARGS
},
12885 { (char *)"OtkEventHandler_gravityHandler", _wrap_OtkEventHandler_gravityHandler
, METH_VARARGS
},
12886 { (char *)"OtkEventHandler_mapHandler", _wrap_OtkEventHandler_mapHandler
, METH_VARARGS
},
12887 { (char *)"OtkEventHandler_mappingHandler", _wrap_OtkEventHandler_mappingHandler
, METH_VARARGS
},
12888 { (char *)"OtkEventHandler_reparentHandler", _wrap_OtkEventHandler_reparentHandler
, METH_VARARGS
},
12889 { (char *)"OtkEventHandler_unmapHandler", _wrap_OtkEventHandler_unmapHandler
, METH_VARARGS
},
12890 { (char *)"OtkEventHandler_visibilityHandler", _wrap_OtkEventHandler_visibilityHandler
, METH_VARARGS
},
12891 { (char *)"OtkEventHandler_colorMapHandler", _wrap_OtkEventHandler_colorMapHandler
, METH_VARARGS
},
12892 { (char *)"OtkEventHandler_propertyHandler", _wrap_OtkEventHandler_propertyHandler
, METH_VARARGS
},
12893 { (char *)"OtkEventHandler_selectionClearHandler", _wrap_OtkEventHandler_selectionClearHandler
, METH_VARARGS
},
12894 { (char *)"OtkEventHandler_selectionHandler", _wrap_OtkEventHandler_selectionHandler
, METH_VARARGS
},
12895 { (char *)"OtkEventHandler_selectionRequestHandler", _wrap_OtkEventHandler_selectionRequestHandler
, METH_VARARGS
},
12896 { (char *)"OtkEventHandler_clientMessageHandler", _wrap_OtkEventHandler_clientMessageHandler
, METH_VARARGS
},
12897 { (char *)"delete_OtkEventHandler", _wrap_delete_OtkEventHandler
, METH_VARARGS
},
12898 { (char *)"OtkEventHandler_swigregister", OtkEventHandler_swigregister
, METH_VARARGS
},
12899 { (char *)"new_OtkWidget", _wrap_new_OtkWidget
, METH_VARARGS
},
12900 { (char *)"delete_OtkWidget", _wrap_delete_OtkWidget
, METH_VARARGS
},
12901 { (char *)"OtkWidget_update", _wrap_OtkWidget_update
, METH_VARARGS
},
12902 { (char *)"OtkWidget_exposeHandler", _wrap_OtkWidget_exposeHandler
, METH_VARARGS
},
12903 { (char *)"OtkWidget_configureHandler", _wrap_OtkWidget_configureHandler
, METH_VARARGS
},
12904 { (char *)"OtkWidget_window", _wrap_OtkWidget_window
, METH_VARARGS
},
12905 { (char *)"OtkWidget_parent", _wrap_OtkWidget_parent
, METH_VARARGS
},
12906 { (char *)"OtkWidget_children", _wrap_OtkWidget_children
, METH_VARARGS
},
12907 { (char *)"OtkWidget_screen", _wrap_OtkWidget_screen
, METH_VARARGS
},
12908 { (char *)"OtkWidget_rect", _wrap_OtkWidget_rect
, METH_VARARGS
},
12909 { (char *)"OtkWidget_move", _wrap_OtkWidget_move
, METH_VARARGS
},
12910 { (char *)"OtkWidget_setWidth", _wrap_OtkWidget_setWidth
, METH_VARARGS
},
12911 { (char *)"OtkWidget_setHeight", _wrap_OtkWidget_setHeight
, METH_VARARGS
},
12912 { (char *)"OtkWidget_width", _wrap_OtkWidget_width
, METH_VARARGS
},
12913 { (char *)"OtkWidget_height", _wrap_OtkWidget_height
, METH_VARARGS
},
12914 { (char *)"OtkWidget_resize", _wrap_OtkWidget_resize
, METH_VARARGS
},
12915 { (char *)"OtkWidget_setGeometry", _wrap_OtkWidget_setGeometry
, METH_VARARGS
},
12916 { (char *)"OtkWidget_isVisible", _wrap_OtkWidget_isVisible
, METH_VARARGS
},
12917 { (char *)"OtkWidget_show", _wrap_OtkWidget_show
, METH_VARARGS
},
12918 { (char *)"OtkWidget_hide", _wrap_OtkWidget_hide
, METH_VARARGS
},
12919 { (char *)"OtkWidget_isFocused", _wrap_OtkWidget_isFocused
, METH_VARARGS
},
12920 { (char *)"OtkWidget_focus", _wrap_OtkWidget_focus
, METH_VARARGS
},
12921 { (char *)"OtkWidget_unfocus", _wrap_OtkWidget_unfocus
, METH_VARARGS
},
12922 { (char *)"OtkWidget_hasGrabbedMouse", _wrap_OtkWidget_hasGrabbedMouse
, METH_VARARGS
},
12923 { (char *)"OtkWidget_grabMouse", _wrap_OtkWidget_grabMouse
, METH_VARARGS
},
12924 { (char *)"OtkWidget_ungrabMouse", _wrap_OtkWidget_ungrabMouse
, METH_VARARGS
},
12925 { (char *)"OtkWidget_hasGrabbedKeyboard", _wrap_OtkWidget_hasGrabbedKeyboard
, METH_VARARGS
},
12926 { (char *)"OtkWidget_grabKeyboard", _wrap_OtkWidget_grabKeyboard
, METH_VARARGS
},
12927 { (char *)"OtkWidget_ungrabKeyboard", _wrap_OtkWidget_ungrabKeyboard
, METH_VARARGS
},
12928 { (char *)"OtkWidget_texture", _wrap_OtkWidget_texture
, METH_VARARGS
},
12929 { (char *)"OtkWidget_setTexture", _wrap_OtkWidget_setTexture
, METH_VARARGS
},
12930 { (char *)"OtkWidget_borderColor", _wrap_OtkWidget_borderColor
, METH_VARARGS
},
12931 { (char *)"OtkWidget_setBorderColor", _wrap_OtkWidget_setBorderColor
, METH_VARARGS
},
12932 { (char *)"OtkWidget_borderWidth", _wrap_OtkWidget_borderWidth
, METH_VARARGS
},
12933 { (char *)"OtkWidget_setBorderWidth", _wrap_OtkWidget_setBorderWidth
, METH_VARARGS
},
12934 { (char *)"OtkWidget_addChild", _wrap_OtkWidget_addChild
, METH_VARARGS
},
12935 { (char *)"OtkWidget_removeChild", _wrap_OtkWidget_removeChild
, METH_VARARGS
},
12936 { (char *)"OtkWidget_isStretchableHorz", _wrap_OtkWidget_isStretchableHorz
, METH_VARARGS
},
12937 { (char *)"OtkWidget_setStretchableHorz", _wrap_OtkWidget_setStretchableHorz
, METH_VARARGS
},
12938 { (char *)"OtkWidget_isStretchableVert", _wrap_OtkWidget_isStretchableVert
, METH_VARARGS
},
12939 { (char *)"OtkWidget_setStretchableVert", _wrap_OtkWidget_setStretchableVert
, METH_VARARGS
},
12940 { (char *)"OtkWidget_cursor", _wrap_OtkWidget_cursor
, METH_VARARGS
},
12941 { (char *)"OtkWidget_setCursor", _wrap_OtkWidget_setCursor
, METH_VARARGS
},
12942 { (char *)"OtkWidget_bevelWidth", _wrap_OtkWidget_bevelWidth
, METH_VARARGS
},
12943 { (char *)"OtkWidget_setBevelWidth", _wrap_OtkWidget_setBevelWidth
, METH_VARARGS
},
12944 { (char *)"OtkWidget_direction", _wrap_OtkWidget_direction
, METH_VARARGS
},
12945 { (char *)"OtkWidget_setDirection", _wrap_OtkWidget_setDirection
, METH_VARARGS
},
12946 { (char *)"OtkWidget_style", _wrap_OtkWidget_style
, METH_VARARGS
},
12947 { (char *)"OtkWidget_setStyle", _wrap_OtkWidget_setStyle
, METH_VARARGS
},
12948 { (char *)"OtkWidget_eventDispatcher", _wrap_OtkWidget_eventDispatcher
, METH_VARARGS
},
12949 { (char *)"OtkWidget_setEventDispatcher", _wrap_OtkWidget_setEventDispatcher
, METH_VARARGS
},
12950 { (char *)"OtkWidget_swigregister", OtkWidget_swigregister
, METH_VARARGS
},
12951 { (char *)"new_OtkFocusWidget", _wrap_new_OtkFocusWidget
, METH_VARARGS
},
12952 { (char *)"delete_OtkFocusWidget", _wrap_delete_OtkFocusWidget
, METH_VARARGS
},
12953 { (char *)"OtkFocusWidget_focus", _wrap_OtkFocusWidget_focus
, METH_VARARGS
},
12954 { (char *)"OtkFocusWidget_unfocus", _wrap_OtkFocusWidget_unfocus
, METH_VARARGS
},
12955 { (char *)"OtkFocusWidget_setTexture", _wrap_OtkFocusWidget_setTexture
, METH_VARARGS
},
12956 { (char *)"OtkFocusWidget_setBorderColor", _wrap_OtkFocusWidget_setBorderColor
, METH_VARARGS
},
12957 { (char *)"OtkFocusWidget_setUnfocusTexture", _wrap_OtkFocusWidget_setUnfocusTexture
, METH_VARARGS
},
12958 { (char *)"OtkFocusWidget_getUnfocusTexture", _wrap_OtkFocusWidget_getUnfocusTexture
, METH_VARARGS
},
12959 { (char *)"OtkFocusWidget_setUnfocusBorderColor", _wrap_OtkFocusWidget_setUnfocusBorderColor
, METH_VARARGS
},
12960 { (char *)"OtkFocusWidget_getUnfocusBorderColor", _wrap_OtkFocusWidget_getUnfocusBorderColor
, METH_VARARGS
},
12961 { (char *)"OtkFocusWidget_isFocused", _wrap_OtkFocusWidget_isFocused
, METH_VARARGS
},
12962 { (char *)"OtkFocusWidget_isUnfocused", _wrap_OtkFocusWidget_isUnfocused
, METH_VARARGS
},
12963 { (char *)"OtkFocusWidget_swigregister", OtkFocusWidget_swigregister
, METH_VARARGS
},
12964 { (char *)"new_OtkFocusLabel", _wrap_new_OtkFocusLabel
, METH_VARARGS
},
12965 { (char *)"delete_OtkFocusLabel", _wrap_delete_OtkFocusLabel
, METH_VARARGS
},
12966 { (char *)"OtkFocusLabel_getText", _wrap_OtkFocusLabel_getText
, METH_VARARGS
},
12967 { (char *)"OtkFocusLabel_setText", _wrap_OtkFocusLabel_setText
, METH_VARARGS
},
12968 { (char *)"OtkFocusLabel_update", _wrap_OtkFocusLabel_update
, METH_VARARGS
},
12969 { (char *)"OtkFocusLabel_setStyle", _wrap_OtkFocusLabel_setStyle
, METH_VARARGS
},
12970 { (char *)"OtkFocusLabel_swigregister", OtkFocusLabel_swigregister
, METH_VARARGS
},
12971 { (char *)"new_OtkAppWidget", _wrap_new_OtkAppWidget
, METH_VARARGS
},
12972 { (char *)"delete_OtkAppWidget", _wrap_delete_OtkAppWidget
, METH_VARARGS
},
12973 { (char *)"OtkAppWidget_show", _wrap_OtkAppWidget_show
, METH_VARARGS
},
12974 { (char *)"OtkAppWidget_hide", _wrap_OtkAppWidget_hide
, METH_VARARGS
},
12975 { (char *)"OtkAppWidget_clientMessageHandler", _wrap_OtkAppWidget_clientMessageHandler
, METH_VARARGS
},
12976 { (char *)"OtkAppWidget_swigregister", OtkAppWidget_swigregister
, METH_VARARGS
},
12977 { (char *)"new_OtkApplication", _wrap_new_OtkApplication
, METH_VARARGS
},
12978 { (char *)"delete_OtkApplication", _wrap_delete_OtkApplication
, METH_VARARGS
},
12979 { (char *)"OtkApplication_run", _wrap_OtkApplication_run
, METH_VARARGS
},
12980 { (char *)"OtkApplication_setDockable", _wrap_OtkApplication_setDockable
, METH_VARARGS
},
12981 { (char *)"OtkApplication_isDockable", _wrap_OtkApplication_isDockable
, METH_VARARGS
},
12982 { (char *)"OtkApplication_getStyle", _wrap_OtkApplication_getStyle
, METH_VARARGS
},
12983 { (char *)"OtkApplication_swigregister", OtkApplication_swigregister
, METH_VARARGS
},
12984 { (char *)"new_PointerAssassin", _wrap_new_PointerAssassin
, METH_VARARGS
},
12985 { (char *)"delete_PointerAssassin", _wrap_delete_PointerAssassin
, METH_VARARGS
},
12986 { (char *)"PointerAssassin_swigregister", PointerAssassin_swigregister
, METH_VARARGS
},
12987 { (char *)"new_OtkButton", _wrap_new_OtkButton
, METH_VARARGS
},
12988 { (char *)"delete_OtkButton", _wrap_delete_OtkButton
, METH_VARARGS
},
12989 { (char *)"OtkButton_getPressedFocusTexture", _wrap_OtkButton_getPressedFocusTexture
, METH_VARARGS
},
12990 { (char *)"OtkButton_setPressedFocusTexture", _wrap_OtkButton_setPressedFocusTexture
, METH_VARARGS
},
12991 { (char *)"OtkButton_getPressedUnfocusTexture", _wrap_OtkButton_getPressedUnfocusTexture
, METH_VARARGS
},
12992 { (char *)"OtkButton_setPressedUnfocusTexture", _wrap_OtkButton_setPressedUnfocusTexture
, METH_VARARGS
},
12993 { (char *)"OtkButton_setTexture", _wrap_OtkButton_setTexture
, METH_VARARGS
},
12994 { (char *)"OtkButton_setUnfocusTexture", _wrap_OtkButton_setUnfocusTexture
, METH_VARARGS
},
12995 { (char *)"OtkButton_isPressed", _wrap_OtkButton_isPressed
, METH_VARARGS
},
12996 { (char *)"OtkButton_press", _wrap_OtkButton_press
, METH_VARARGS
},
12997 { (char *)"OtkButton_release", _wrap_OtkButton_release
, METH_VARARGS
},
12998 { (char *)"OtkButton_buttonPressHandler", _wrap_OtkButton_buttonPressHandler
, METH_VARARGS
},
12999 { (char *)"OtkButton_buttonReleaseHandler", _wrap_OtkButton_buttonReleaseHandler
, METH_VARARGS
},
13000 { (char *)"OtkButton_setStyle", _wrap_OtkButton_setStyle
, METH_VARARGS
},
13001 { (char *)"OtkButton_swigregister", OtkButton_swigregister
, METH_VARARGS
},
13002 { (char *)"new_BColor", _wrap_new_BColor
, METH_VARARGS
},
13003 { (char *)"delete_BColor", _wrap_delete_BColor
, METH_VARARGS
},
13004 { (char *)"BColor_name", _wrap_BColor_name
, METH_VARARGS
},
13005 { (char *)"BColor_red", _wrap_BColor_red
, METH_VARARGS
},
13006 { (char *)"BColor_green", _wrap_BColor_green
, METH_VARARGS
},
13007 { (char *)"BColor_blue", _wrap_BColor_blue
, METH_VARARGS
},
13008 { (char *)"BColor_setRGB", _wrap_BColor_setRGB
, METH_VARARGS
},
13009 { (char *)"BColor_screen", _wrap_BColor_screen
, METH_VARARGS
},
13010 { (char *)"BColor_setScreen", _wrap_BColor_setScreen
, METH_VARARGS
},
13011 { (char *)"BColor_isAllocated", _wrap_BColor_isAllocated
, METH_VARARGS
},
13012 { (char *)"BColor_isValid", _wrap_BColor_isValid
, METH_VARARGS
},
13013 { (char *)"BColor_pixel", _wrap_BColor_pixel
, METH_VARARGS
},
13014 { (char *)"BColor_equals", _wrap_BColor_equals
, METH_VARARGS
},
13015 { (char *)"BColor_cleanupColorCache", _wrap_BColor_cleanupColorCache
, METH_VARARGS
},
13016 { (char *)"BColor_swigregister", BColor_swigregister
, METH_VARARGS
},
13017 { (char *)"new_Configuration", _wrap_new_Configuration
, METH_VARARGS
},
13018 { (char *)"delete_Configuration", _wrap_delete_Configuration
, METH_VARARGS
},
13019 { (char *)"Configuration_file", _wrap_Configuration_file
, METH_VARARGS
},
13020 { (char *)"Configuration_setFile", _wrap_Configuration_setFile
, METH_VARARGS
},
13021 { (char *)"Configuration_autoSave", _wrap_Configuration_autoSave
, METH_VARARGS
},
13022 { (char *)"Configuration_setAutoSave", _wrap_Configuration_setAutoSave
, METH_VARARGS
},
13023 { (char *)"Configuration_isModified", _wrap_Configuration_isModified
, METH_VARARGS
},
13024 { (char *)"Configuration_save", _wrap_Configuration_save
, METH_VARARGS
},
13025 { (char *)"Configuration_load", _wrap_Configuration_load
, METH_VARARGS
},
13026 { (char *)"Configuration_merge", _wrap_Configuration_merge
, METH_VARARGS
},
13027 { (char *)"Configuration_create", _wrap_Configuration_create
, METH_VARARGS
},
13028 { (char *)"Configuration_setValue_bool", _wrap_Configuration_setValue_bool
, METH_VARARGS
},
13029 { (char *)"Configuration_setValue", _wrap_Configuration_setValue
, METH_VARARGS
},
13030 { (char *)"Configuration_setValue_unsigned", _wrap_Configuration_setValue_unsigned
, METH_VARARGS
},
13031 { (char *)"Configuration_setValue_long", _wrap_Configuration_setValue_long
, METH_VARARGS
},
13032 { (char *)"Configuration_setValue_unsignedlong", _wrap_Configuration_setValue_unsignedlong
, METH_VARARGS
},
13033 { (char *)"Configuration_setValue_string", _wrap_Configuration_setValue_string
, METH_VARARGS
},
13034 { (char *)"Configuration_setValue_charptr", _wrap_Configuration_setValue_charptr
, METH_VARARGS
},
13035 { (char *)"Configuration_getValue", _wrap_Configuration_getValue
, METH_VARARGS
},
13036 { (char *)"Configuration_swigregister", Configuration_swigregister
, METH_VARARGS
},
13037 { (char *)"OBDisplay_initialize", _wrap_OBDisplay_initialize
, METH_VARARGS
},
13038 { (char *)"OBDisplay_destroy", _wrap_OBDisplay_destroy
, METH_VARARGS
},
13039 { (char *)"OBDisplay_gcCache", _wrap_OBDisplay_gcCache
, METH_VARARGS
},
13040 { (char *)"OBDisplay_screenInfo", _wrap_OBDisplay_screenInfo
, METH_VARARGS
},
13041 { (char *)"OBDisplay_shape", _wrap_OBDisplay_shape
, METH_VARARGS
},
13042 { (char *)"OBDisplay_shapeEventBase", _wrap_OBDisplay_shapeEventBase
, METH_VARARGS
},
13043 { (char *)"OBDisplay_xinerama", _wrap_OBDisplay_xinerama
, METH_VARARGS
},
13044 { (char *)"OBDisplay_grab", _wrap_OBDisplay_grab
, METH_VARARGS
},
13045 { (char *)"OBDisplay_ungrab", _wrap_OBDisplay_ungrab
, METH_VARARGS
},
13046 { (char *)"OBDisplay_grabButton", _wrap_OBDisplay_grabButton
, METH_VARARGS
},
13047 { (char *)"OBDisplay_ungrabButton", _wrap_OBDisplay_ungrabButton
, METH_VARARGS
},
13048 { (char *)"OBDisplay_grabKey", _wrap_OBDisplay_grabKey
, METH_VARARGS
},
13049 { (char *)"OBDisplay_ungrabKey", _wrap_OBDisplay_ungrabKey
, METH_VARARGS
},
13050 { (char *)"delete_OBDisplay", _wrap_delete_OBDisplay
, METH_VARARGS
},
13051 { (char *)"OBDisplay_swigregister", OBDisplay_swigregister
, METH_VARARGS
},
13052 { (char *)"BFont_fallbackFont", _wrap_BFont_fallbackFont
, METH_VARARGS
},
13053 { (char *)"BFont_setFallbackFont", _wrap_BFont_setFallbackFont
, METH_VARARGS
},
13054 { (char *)"new_BFont", _wrap_new_BFont
, METH_VARARGS
},
13055 { (char *)"delete_BFont", _wrap_delete_BFont
, METH_VARARGS
},
13056 { (char *)"BFont_fontstring", _wrap_BFont_fontstring
, METH_VARARGS
},
13057 { (char *)"BFont_height", _wrap_BFont_height
, METH_VARARGS
},
13058 { (char *)"BFont_maxCharWidth", _wrap_BFont_maxCharWidth
, METH_VARARGS
},
13059 { (char *)"BFont_measureString", _wrap_BFont_measureString
, METH_VARARGS
},
13060 { (char *)"BFont_drawString", _wrap_BFont_drawString
, METH_VARARGS
},
13061 { (char *)"BFont_swigregister", BFont_swigregister
, METH_VARARGS
},
13062 { (char *)"BGCCacheContext_set", _wrap_BGCCacheContext_set
, METH_VARARGS
},
13063 { (char *)"delete_BGCCacheContext", _wrap_delete_BGCCacheContext
, METH_VARARGS
},
13064 { (char *)"BGCCacheContext_swigregister", BGCCacheContext_swigregister
, METH_VARARGS
},
13065 { (char *)"BGCCacheItem_gc", _wrap_BGCCacheItem_gc
, METH_VARARGS
},
13066 { (char *)"delete_BGCCacheItem", _wrap_delete_BGCCacheItem
, METH_VARARGS
},
13067 { (char *)"BGCCacheItem_swigregister", BGCCacheItem_swigregister
, METH_VARARGS
},
13068 { (char *)"new_BGCCache", _wrap_new_BGCCache
, METH_VARARGS
},
13069 { (char *)"delete_BGCCache", _wrap_delete_BGCCache
, METH_VARARGS
},
13070 { (char *)"BGCCache_purge", _wrap_BGCCache_purge
, METH_VARARGS
},
13071 { (char *)"BGCCache_find", _wrap_BGCCache_find
, METH_VARARGS
},
13072 { (char *)"BGCCache_release", _wrap_BGCCache_release
, METH_VARARGS
},
13073 { (char *)"BGCCache_swigregister", BGCCache_swigregister
, METH_VARARGS
},
13074 { (char *)"new_BPen", _wrap_new_BPen
, METH_VARARGS
},
13075 { (char *)"delete_BPen", _wrap_delete_BPen
, METH_VARARGS
},
13076 { (char *)"BPen_gc", _wrap_BPen_gc
, METH_VARARGS
},
13077 { (char *)"BPen_swigregister", BPen_swigregister
, METH_VARARGS
},
13078 { (char *)"new_BImage", _wrap_new_BImage
, METH_VARARGS
},
13079 { (char *)"delete_BImage", _wrap_delete_BImage
, METH_VARARGS
},
13080 { (char *)"BImage_render", _wrap_BImage_render
, METH_VARARGS
},
13081 { (char *)"BImage_swigregister", BImage_swigregister
, METH_VARARGS
},
13082 { (char *)"new_BImageControl", _wrap_new_BImageControl
, METH_VARARGS
},
13083 { (char *)"delete_BImageControl", _wrap_delete_BImageControl
, METH_VARARGS
},
13084 { (char *)"BImageControl_doDither", _wrap_BImageControl_doDither
, METH_VARARGS
},
13085 { (char *)"BImageControl_getScreenInfo", _wrap_BImageControl_getScreenInfo
, METH_VARARGS
},
13086 { (char *)"BImageControl_getDrawable", _wrap_BImageControl_getDrawable
, METH_VARARGS
},
13087 { (char *)"BImageControl_getVisual", _wrap_BImageControl_getVisual
, METH_VARARGS
},
13088 { (char *)"BImageControl_getBitsPerPixel", _wrap_BImageControl_getBitsPerPixel
, METH_VARARGS
},
13089 { (char *)"BImageControl_getDepth", _wrap_BImageControl_getDepth
, METH_VARARGS
},
13090 { (char *)"BImageControl_getColorsPerChannel", _wrap_BImageControl_getColorsPerChannel
, METH_VARARGS
},
13091 { (char *)"BImageControl_getSqrt", _wrap_BImageControl_getSqrt
, METH_VARARGS
},
13092 { (char *)"BImageControl_renderImage", _wrap_BImageControl_renderImage
, METH_VARARGS
},
13093 { (char *)"BImageControl_installRootColormap", _wrap_BImageControl_installRootColormap
, METH_VARARGS
},
13094 { (char *)"BImageControl_removeImage", _wrap_BImageControl_removeImage
, METH_VARARGS
},
13095 { (char *)"BImageControl_getColorTables", _wrap_BImageControl_getColorTables
, METH_VARARGS
},
13096 { (char *)"BImageControl_getXColorTable", _wrap_BImageControl_getXColorTable
, METH_VARARGS
},
13097 { (char *)"BImageControl_getGradientBuffers", _wrap_BImageControl_getGradientBuffers
, METH_VARARGS
},
13098 { (char *)"BImageControl_setDither", _wrap_BImageControl_setDither
, METH_VARARGS
},
13099 { (char *)"BImageControl_setColorsPerChannel", _wrap_BImageControl_setColorsPerChannel
, METH_VARARGS
},
13100 { (char *)"BImageControl_timeout", _wrap_BImageControl_timeout
, METH_VARARGS
},
13101 { (char *)"BImageControl_swigregister", BImageControl_swigregister
, METH_VARARGS
},
13102 { (char *)"new_Point", _wrap_new_Point
, METH_VARARGS
},
13103 { (char *)"Point_setX", _wrap_Point_setX
, METH_VARARGS
},
13104 { (char *)"Point_x", _wrap_Point_x
, METH_VARARGS
},
13105 { (char *)"Point_setY", _wrap_Point_setY
, METH_VARARGS
},
13106 { (char *)"Point_y", _wrap_Point_y
, METH_VARARGS
},
13107 { (char *)"Point_setPoint", _wrap_Point_setPoint
, METH_VARARGS
},
13108 { (char *)"delete_Point", _wrap_delete_Point
, METH_VARARGS
},
13109 { (char *)"Point_swigregister", Point_swigregister
, METH_VARARGS
},
13110 { (char *)"new_OBProperty", _wrap_new_OBProperty
, METH_VARARGS
},
13111 { (char *)"delete_OBProperty", _wrap_delete_OBProperty
, METH_VARARGS
},
13112 { (char *)"OBProperty_set", _wrap_OBProperty_set
, METH_VARARGS
},
13113 { (char *)"OBProperty_get", _wrap_OBProperty_get
, METH_VARARGS
},
13114 { (char *)"OBProperty_erase", _wrap_OBProperty_erase
, METH_VARARGS
},
13115 { (char *)"OBProperty_atom", _wrap_OBProperty_atom
, METH_VARARGS
},
13116 { (char *)"OBProperty_swigregister", OBProperty_swigregister
, METH_VARARGS
},
13117 { (char *)"new_Rect", _wrap_new_Rect
, METH_VARARGS
},
13118 { (char *)"Rect_left", _wrap_Rect_left
, METH_VARARGS
},
13119 { (char *)"Rect_top", _wrap_Rect_top
, METH_VARARGS
},
13120 { (char *)"Rect_right", _wrap_Rect_right
, METH_VARARGS
},
13121 { (char *)"Rect_bottom", _wrap_Rect_bottom
, METH_VARARGS
},
13122 { (char *)"Rect_x", _wrap_Rect_x
, METH_VARARGS
},
13123 { (char *)"Rect_y", _wrap_Rect_y
, METH_VARARGS
},
13124 { (char *)"Rect_location", _wrap_Rect_location
, METH_VARARGS
},
13125 { (char *)"Rect_setX", _wrap_Rect_setX
, METH_VARARGS
},
13126 { (char *)"Rect_setY", _wrap_Rect_setY
, METH_VARARGS
},
13127 { (char *)"Rect_setPos", _wrap_Rect_setPos
, METH_VARARGS
},
13128 { (char *)"Rect_width", _wrap_Rect_width
, METH_VARARGS
},
13129 { (char *)"Rect_height", _wrap_Rect_height
, METH_VARARGS
},
13130 { (char *)"Rect_size", _wrap_Rect_size
, METH_VARARGS
},
13131 { (char *)"Rect_setWidth", _wrap_Rect_setWidth
, METH_VARARGS
},
13132 { (char *)"Rect_setHeight", _wrap_Rect_setHeight
, METH_VARARGS
},
13133 { (char *)"Rect_setSize", _wrap_Rect_setSize
, METH_VARARGS
},
13134 { (char *)"Rect_setRect", _wrap_Rect_setRect
, METH_VARARGS
},
13135 { (char *)"Rect_setCoords", _wrap_Rect_setCoords
, METH_VARARGS
},
13136 { (char *)"Rect_equals", _wrap_Rect_equals
, METH_VARARGS
},
13137 { (char *)"Rect_valid", _wrap_Rect_valid
, METH_VARARGS
},
13138 { (char *)"Rect_intersects", _wrap_Rect_intersects
, METH_VARARGS
},
13139 { (char *)"Rect_contains", _wrap_Rect_contains
, METH_VARARGS
},
13140 { (char *)"delete_Rect", _wrap_delete_Rect
, METH_VARARGS
},
13141 { (char *)"Rect_swigregister", Rect_swigregister
, METH_VARARGS
},
13142 { (char *)"new_ScreenInfo", _wrap_new_ScreenInfo
, METH_VARARGS
},
13143 { (char *)"ScreenInfo_visual", _wrap_ScreenInfo_visual
, METH_VARARGS
},
13144 { (char *)"ScreenInfo_rootWindow", _wrap_ScreenInfo_rootWindow
, METH_VARARGS
},
13145 { (char *)"ScreenInfo_colormap", _wrap_ScreenInfo_colormap
, METH_VARARGS
},
13146 { (char *)"ScreenInfo_depth", _wrap_ScreenInfo_depth
, METH_VARARGS
},
13147 { (char *)"ScreenInfo_screen", _wrap_ScreenInfo_screen
, METH_VARARGS
},
13148 { (char *)"ScreenInfo_rect", _wrap_ScreenInfo_rect
, METH_VARARGS
},
13149 { (char *)"ScreenInfo_width", _wrap_ScreenInfo_width
, METH_VARARGS
},
13150 { (char *)"ScreenInfo_height", _wrap_ScreenInfo_height
, METH_VARARGS
},
13151 { (char *)"ScreenInfo_displayString", _wrap_ScreenInfo_displayString
, METH_VARARGS
},
13152 { (char *)"delete_ScreenInfo", _wrap_delete_ScreenInfo
, METH_VARARGS
},
13153 { (char *)"ScreenInfo_swigregister", ScreenInfo_swigregister
, METH_VARARGS
},
13154 { (char *)"Strut_top_set", _wrap_Strut_top_set
, METH_VARARGS
},
13155 { (char *)"Strut_top_get", _wrap_Strut_top_get
, METH_VARARGS
},
13156 { (char *)"Strut_bottom_set", _wrap_Strut_bottom_set
, METH_VARARGS
},
13157 { (char *)"Strut_bottom_get", _wrap_Strut_bottom_get
, METH_VARARGS
},
13158 { (char *)"Strut_left_set", _wrap_Strut_left_set
, METH_VARARGS
},
13159 { (char *)"Strut_left_get", _wrap_Strut_left_get
, METH_VARARGS
},
13160 { (char *)"Strut_right_set", _wrap_Strut_right_set
, METH_VARARGS
},
13161 { (char *)"Strut_right_get", _wrap_Strut_right_get
, METH_VARARGS
},
13162 { (char *)"new_Strut", _wrap_new_Strut
, METH_VARARGS
},
13163 { (char *)"delete_Strut", _wrap_delete_Strut
, METH_VARARGS
},
13164 { (char *)"Strut_swigregister", Strut_swigregister
, METH_VARARGS
},
13165 { (char *)"PixmapMask_mask_set", _wrap_PixmapMask_mask_set
, METH_VARARGS
},
13166 { (char *)"PixmapMask_mask_get", _wrap_PixmapMask_mask_get
, METH_VARARGS
},
13167 { (char *)"PixmapMask_w_set", _wrap_PixmapMask_w_set
, METH_VARARGS
},
13168 { (char *)"PixmapMask_w_get", _wrap_PixmapMask_w_get
, METH_VARARGS
},
13169 { (char *)"PixmapMask_h_set", _wrap_PixmapMask_h_set
, METH_VARARGS
},
13170 { (char *)"PixmapMask_h_get", _wrap_PixmapMask_h_get
, METH_VARARGS
},
13171 { (char *)"new_PixmapMask", _wrap_new_PixmapMask
, METH_VARARGS
},
13172 { (char *)"delete_PixmapMask", _wrap_delete_PixmapMask
, METH_VARARGS
},
13173 { (char *)"PixmapMask_swigregister", PixmapMask_swigregister
, METH_VARARGS
},
13174 { (char *)"Style_image_control_set", _wrap_Style_image_control_set
, METH_VARARGS
},
13175 { (char *)"Style_image_control_get", _wrap_Style_image_control_get
, METH_VARARGS
},
13176 { (char *)"Style_l_text_focus_set", _wrap_Style_l_text_focus_set
, METH_VARARGS
},
13177 { (char *)"Style_l_text_focus_get", _wrap_Style_l_text_focus_get
, METH_VARARGS
},
13178 { (char *)"Style_l_text_unfocus_set", _wrap_Style_l_text_unfocus_set
, METH_VARARGS
},
13179 { (char *)"Style_l_text_unfocus_get", _wrap_Style_l_text_unfocus_get
, METH_VARARGS
},
13180 { (char *)"Style_b_pic_focus_set", _wrap_Style_b_pic_focus_set
, METH_VARARGS
},
13181 { (char *)"Style_b_pic_focus_get", _wrap_Style_b_pic_focus_get
, METH_VARARGS
},
13182 { (char *)"Style_b_pic_unfocus_set", _wrap_Style_b_pic_unfocus_set
, METH_VARARGS
},
13183 { (char *)"Style_b_pic_unfocus_get", _wrap_Style_b_pic_unfocus_get
, METH_VARARGS
},
13184 { (char *)"Style_border_color_set", _wrap_Style_border_color_set
, METH_VARARGS
},
13185 { (char *)"Style_border_color_get", _wrap_Style_border_color_get
, METH_VARARGS
},
13186 { (char *)"Style_font_set", _wrap_Style_font_set
, METH_VARARGS
},
13187 { (char *)"Style_font_get", _wrap_Style_font_get
, METH_VARARGS
},
13188 { (char *)"Style_f_focus_set", _wrap_Style_f_focus_set
, METH_VARARGS
},
13189 { (char *)"Style_f_focus_get", _wrap_Style_f_focus_get
, METH_VARARGS
},
13190 { (char *)"Style_f_unfocus_set", _wrap_Style_f_unfocus_set
, METH_VARARGS
},
13191 { (char *)"Style_f_unfocus_get", _wrap_Style_f_unfocus_get
, METH_VARARGS
},
13192 { (char *)"Style_t_focus_set", _wrap_Style_t_focus_set
, METH_VARARGS
},
13193 { (char *)"Style_t_focus_get", _wrap_Style_t_focus_get
, METH_VARARGS
},
13194 { (char *)"Style_t_unfocus_set", _wrap_Style_t_unfocus_set
, METH_VARARGS
},
13195 { (char *)"Style_t_unfocus_get", _wrap_Style_t_unfocus_get
, METH_VARARGS
},
13196 { (char *)"Style_l_focus_set", _wrap_Style_l_focus_set
, METH_VARARGS
},
13197 { (char *)"Style_l_focus_get", _wrap_Style_l_focus_get
, METH_VARARGS
},
13198 { (char *)"Style_l_unfocus_set", _wrap_Style_l_unfocus_set
, METH_VARARGS
},
13199 { (char *)"Style_l_unfocus_get", _wrap_Style_l_unfocus_get
, METH_VARARGS
},
13200 { (char *)"Style_h_focus_set", _wrap_Style_h_focus_set
, METH_VARARGS
},
13201 { (char *)"Style_h_focus_get", _wrap_Style_h_focus_get
, METH_VARARGS
},
13202 { (char *)"Style_h_unfocus_set", _wrap_Style_h_unfocus_set
, METH_VARARGS
},
13203 { (char *)"Style_h_unfocus_get", _wrap_Style_h_unfocus_get
, METH_VARARGS
},
13204 { (char *)"Style_b_focus_set", _wrap_Style_b_focus_set
, METH_VARARGS
},
13205 { (char *)"Style_b_focus_get", _wrap_Style_b_focus_get
, METH_VARARGS
},
13206 { (char *)"Style_b_unfocus_set", _wrap_Style_b_unfocus_set
, METH_VARARGS
},
13207 { (char *)"Style_b_unfocus_get", _wrap_Style_b_unfocus_get
, METH_VARARGS
},
13208 { (char *)"Style_b_pressed_focus_set", _wrap_Style_b_pressed_focus_set
, METH_VARARGS
},
13209 { (char *)"Style_b_pressed_focus_get", _wrap_Style_b_pressed_focus_get
, METH_VARARGS
},
13210 { (char *)"Style_b_pressed_unfocus_set", _wrap_Style_b_pressed_unfocus_set
, METH_VARARGS
},
13211 { (char *)"Style_b_pressed_unfocus_get", _wrap_Style_b_pressed_unfocus_get
, METH_VARARGS
},
13212 { (char *)"Style_g_focus_set", _wrap_Style_g_focus_set
, METH_VARARGS
},
13213 { (char *)"Style_g_focus_get", _wrap_Style_g_focus_get
, METH_VARARGS
},
13214 { (char *)"Style_g_unfocus_set", _wrap_Style_g_unfocus_set
, METH_VARARGS
},
13215 { (char *)"Style_g_unfocus_get", _wrap_Style_g_unfocus_get
, METH_VARARGS
},
13216 { (char *)"Style_close_button_set", _wrap_Style_close_button_set
, METH_VARARGS
},
13217 { (char *)"Style_close_button_get", _wrap_Style_close_button_get
, METH_VARARGS
},
13218 { (char *)"Style_max_button_set", _wrap_Style_max_button_set
, METH_VARARGS
},
13219 { (char *)"Style_max_button_get", _wrap_Style_max_button_get
, METH_VARARGS
},
13220 { (char *)"Style_icon_button_set", _wrap_Style_icon_button_set
, METH_VARARGS
},
13221 { (char *)"Style_icon_button_get", _wrap_Style_icon_button_get
, METH_VARARGS
},
13222 { (char *)"Style_stick_button_set", _wrap_Style_stick_button_set
, METH_VARARGS
},
13223 { (char *)"Style_stick_button_get", _wrap_Style_stick_button_get
, METH_VARARGS
},
13224 { (char *)"Style_justify_set", _wrap_Style_justify_set
, METH_VARARGS
},
13225 { (char *)"Style_justify_get", _wrap_Style_justify_get
, METH_VARARGS
},
13226 { (char *)"Style_bullet_type_set", _wrap_Style_bullet_type_set
, METH_VARARGS
},
13227 { (char *)"Style_bullet_type_get", _wrap_Style_bullet_type_get
, METH_VARARGS
},
13228 { (char *)"Style_handle_width_set", _wrap_Style_handle_width_set
, METH_VARARGS
},
13229 { (char *)"Style_handle_width_get", _wrap_Style_handle_width_get
, METH_VARARGS
},
13230 { (char *)"Style_bevel_width_set", _wrap_Style_bevel_width_set
, METH_VARARGS
},
13231 { (char *)"Style_bevel_width_get", _wrap_Style_bevel_width_get
, METH_VARARGS
},
13232 { (char *)"Style_frame_width_set", _wrap_Style_frame_width_set
, METH_VARARGS
},
13233 { (char *)"Style_frame_width_get", _wrap_Style_frame_width_get
, METH_VARARGS
},
13234 { (char *)"Style_border_width_set", _wrap_Style_border_width_set
, METH_VARARGS
},
13235 { (char *)"Style_border_width_get", _wrap_Style_border_width_get
, METH_VARARGS
},
13236 { (char *)"Style_screen_number_set", _wrap_Style_screen_number_set
, METH_VARARGS
},
13237 { (char *)"Style_screen_number_get", _wrap_Style_screen_number_get
, METH_VARARGS
},
13238 { (char *)"Style_shadow_fonts_set", _wrap_Style_shadow_fonts_set
, METH_VARARGS
},
13239 { (char *)"Style_shadow_fonts_get", _wrap_Style_shadow_fonts_get
, METH_VARARGS
},
13240 { (char *)"Style_aa_fonts_set", _wrap_Style_aa_fonts_set
, METH_VARARGS
},
13241 { (char *)"Style_aa_fonts_get", _wrap_Style_aa_fonts_get
, METH_VARARGS
},
13242 { (char *)"new_Style", _wrap_new_Style
, METH_VARARGS
},
13243 { (char *)"delete_Style", _wrap_delete_Style
, METH_VARARGS
},
13244 { (char *)"Style_readDatabaseMask", _wrap_Style_readDatabaseMask
, METH_VARARGS
},
13245 { (char *)"Style_readDatabaseTexture", _wrap_Style_readDatabaseTexture
, METH_VARARGS
},
13246 { (char *)"Style_readDatabaseColor", _wrap_Style_readDatabaseColor
, METH_VARARGS
},
13247 { (char *)"Style_readDatabaseFont", _wrap_Style_readDatabaseFont
, METH_VARARGS
},
13248 { (char *)"Style_load", _wrap_Style_load
, METH_VARARGS
},
13249 { (char *)"Style_getCloseButtonMask", _wrap_Style_getCloseButtonMask
, METH_VARARGS
},
13250 { (char *)"Style_getMaximizeButtonMask", _wrap_Style_getMaximizeButtonMask
, METH_VARARGS
},
13251 { (char *)"Style_getIconifyButtonMask", _wrap_Style_getIconifyButtonMask
, METH_VARARGS
},
13252 { (char *)"Style_getStickyButtonMask", _wrap_Style_getStickyButtonMask
, METH_VARARGS
},
13253 { (char *)"Style_getTextFocus", _wrap_Style_getTextFocus
, METH_VARARGS
},
13254 { (char *)"Style_getTextUnfocus", _wrap_Style_getTextUnfocus
, METH_VARARGS
},
13255 { (char *)"Style_getButtonPicFocus", _wrap_Style_getButtonPicFocus
, METH_VARARGS
},
13256 { (char *)"Style_getButtonPicUnfocus", _wrap_Style_getButtonPicUnfocus
, METH_VARARGS
},
13257 { (char *)"Style_getTitleFocus", _wrap_Style_getTitleFocus
, METH_VARARGS
},
13258 { (char *)"Style_getTitleUnfocus", _wrap_Style_getTitleUnfocus
, METH_VARARGS
},
13259 { (char *)"Style_getLabelFocus", _wrap_Style_getLabelFocus
, METH_VARARGS
},
13260 { (char *)"Style_getLabelUnfocus", _wrap_Style_getLabelUnfocus
, METH_VARARGS
},
13261 { (char *)"Style_getHandleFocus", _wrap_Style_getHandleFocus
, METH_VARARGS
},
13262 { (char *)"Style_getHandleUnfocus", _wrap_Style_getHandleUnfocus
, METH_VARARGS
},
13263 { (char *)"Style_getButtonFocus", _wrap_Style_getButtonFocus
, METH_VARARGS
},
13264 { (char *)"Style_getButtonUnfocus", _wrap_Style_getButtonUnfocus
, METH_VARARGS
},
13265 { (char *)"Style_getButtonPressedFocus", _wrap_Style_getButtonPressedFocus
, METH_VARARGS
},
13266 { (char *)"Style_getButtonPressedUnfocus", _wrap_Style_getButtonPressedUnfocus
, METH_VARARGS
},
13267 { (char *)"Style_getGripFocus", _wrap_Style_getGripFocus
, METH_VARARGS
},
13268 { (char *)"Style_getGripUnfocus", _wrap_Style_getGripUnfocus
, METH_VARARGS
},
13269 { (char *)"Style_getHandleWidth", _wrap_Style_getHandleWidth
, METH_VARARGS
},
13270 { (char *)"Style_getBevelWidth", _wrap_Style_getBevelWidth
, METH_VARARGS
},
13271 { (char *)"Style_getFrameWidth", _wrap_Style_getFrameWidth
, METH_VARARGS
},
13272 { (char *)"Style_getBorderWidth", _wrap_Style_getBorderWidth
, METH_VARARGS
},
13273 { (char *)"Style_getFont", _wrap_Style_getFont
, METH_VARARGS
},
13274 { (char *)"Style_setShadowFonts", _wrap_Style_setShadowFonts
, METH_VARARGS
},
13275 { (char *)"Style_hasShadowFonts", _wrap_Style_hasShadowFonts
, METH_VARARGS
},
13276 { (char *)"Style_setAAFonts", _wrap_Style_setAAFonts
, METH_VARARGS
},
13277 { (char *)"Style_hasAAFonts", _wrap_Style_hasAAFonts
, METH_VARARGS
},
13278 { (char *)"Style_textJustify", _wrap_Style_textJustify
, METH_VARARGS
},
13279 { (char *)"Style_bulletType", _wrap_Style_bulletType
, METH_VARARGS
},
13280 { (char *)"Style_getBorderColor", _wrap_Style_getBorderColor
, METH_VARARGS
},
13281 { (char *)"Style_getFrameFocus", _wrap_Style_getFrameFocus
, METH_VARARGS
},
13282 { (char *)"Style_getFrameUnfocus", _wrap_Style_getFrameUnfocus
, METH_VARARGS
},
13283 { (char *)"Style_setImageControl", _wrap_Style_setImageControl
, METH_VARARGS
},
13284 { (char *)"Style_getScreen", _wrap_Style_getScreen
, METH_VARARGS
},
13285 { (char *)"Style_swigregister", Style_swigregister
, METH_VARARGS
},
13286 { (char *)"new_BTexture", _wrap_new_BTexture
, METH_VARARGS
},
13287 { (char *)"BTexture_setColor", _wrap_BTexture_setColor
, METH_VARARGS
},
13288 { (char *)"BTexture_setColorTo", _wrap_BTexture_setColorTo
, METH_VARARGS
},
13289 { (char *)"BTexture_setBorderColor", _wrap_BTexture_setBorderColor
, METH_VARARGS
},
13290 { (char *)"BTexture_color", _wrap_BTexture_color
, METH_VARARGS
},
13291 { (char *)"BTexture_colorTo", _wrap_BTexture_colorTo
, METH_VARARGS
},
13292 { (char *)"BTexture_lightColor", _wrap_BTexture_lightColor
, METH_VARARGS
},
13293 { (char *)"BTexture_shadowColor", _wrap_BTexture_shadowColor
, METH_VARARGS
},
13294 { (char *)"BTexture_borderColor", _wrap_BTexture_borderColor
, METH_VARARGS
},
13295 { (char *)"BTexture_texture", _wrap_BTexture_texture
, METH_VARARGS
},
13296 { (char *)"BTexture_setTexture", _wrap_BTexture_setTexture
, METH_VARARGS
},
13297 { (char *)"BTexture_addTexture", _wrap_BTexture_addTexture
, METH_VARARGS
},
13298 { (char *)"BTexture_equals", _wrap_BTexture_equals
, METH_VARARGS
},
13299 { (char *)"BTexture_screen", _wrap_BTexture_screen
, METH_VARARGS
},
13300 { (char *)"BTexture_setScreen", _wrap_BTexture_setScreen
, METH_VARARGS
},
13301 { (char *)"BTexture_setImageControl", _wrap_BTexture_setImageControl
, METH_VARARGS
},
13302 { (char *)"BTexture_description", _wrap_BTexture_description
, METH_VARARGS
},
13303 { (char *)"BTexture_setDescription", _wrap_BTexture_setDescription
, METH_VARARGS
},
13304 { (char *)"BTexture_render", _wrap_BTexture_render
, METH_VARARGS
},
13305 { (char *)"delete_BTexture", _wrap_delete_BTexture
, METH_VARARGS
},
13306 { (char *)"BTexture_swigregister", BTexture_swigregister
, METH_VARARGS
},
13307 { (char *)"new_OBTimer", _wrap_new_OBTimer
, METH_VARARGS
},
13308 { (char *)"delete_OBTimer", _wrap_delete_OBTimer
, METH_VARARGS
},
13309 { (char *)"OBTimer_fire", _wrap_OBTimer_fire
, METH_VARARGS
},
13310 { (char *)"OBTimer_timing", _wrap_OBTimer_timing
, METH_VARARGS
},
13311 { (char *)"OBTimer_recurring", _wrap_OBTimer_recurring
, METH_VARARGS
},
13312 { (char *)"OBTimer_timeout", _wrap_OBTimer_timeout
, METH_VARARGS
},
13313 { (char *)"OBTimer_startTime", _wrap_OBTimer_startTime
, METH_VARARGS
},
13314 { (char *)"OBTimer_remainingTime", _wrap_OBTimer_remainingTime
, METH_VARARGS
},
13315 { (char *)"OBTimer_shouldFire", _wrap_OBTimer_shouldFire
, METH_VARARGS
},
13316 { (char *)"OBTimer_endTime", _wrap_OBTimer_endTime
, METH_VARARGS
},
13317 { (char *)"OBTimer_setRecurring", _wrap_OBTimer_setRecurring
, METH_VARARGS
},
13318 { (char *)"OBTimer_setTimeout", _wrap_OBTimer_setTimeout
, METH_VARARGS
},
13319 { (char *)"OBTimer_start", _wrap_OBTimer_start
, METH_VARARGS
},
13320 { (char *)"OBTimer_stop", _wrap_OBTimer_stop
, METH_VARARGS
},
13321 { (char *)"OBTimer_swigregister", OBTimer_swigregister
, METH_VARARGS
},
13322 { (char *)"new_OBTimerQueueManager", _wrap_new_OBTimerQueueManager
, METH_VARARGS
},
13323 { (char *)"delete_OBTimerQueueManager", _wrap_delete_OBTimerQueueManager
, METH_VARARGS
},
13324 { (char *)"OBTimerQueueManager_fire", _wrap_OBTimerQueueManager_fire
, METH_VARARGS
},
13325 { (char *)"OBTimerQueueManager_addTimer", _wrap_OBTimerQueueManager_addTimer
, METH_VARARGS
},
13326 { (char *)"OBTimerQueueManager_removeTimer", _wrap_OBTimerQueueManager_removeTimer
, METH_VARARGS
},
13327 { (char *)"OBTimerQueueManager_swigregister", OBTimerQueueManager_swigregister
, METH_VARARGS
},
13328 { (char *)"expandTilde", _wrap_expandTilde
, METH_VARARGS
},
13329 { (char *)"bexec", _wrap_bexec
, METH_VARARGS
},
13330 { (char *)"textPropertyToString", _wrap_textPropertyToString
, METH_VARARGS
},
13331 { (char *)"itostring_unsigned_long", _wrap_itostring_unsigned_long
, METH_VARARGS
},
13332 { (char *)"itostring_long", _wrap_itostring_long
, METH_VARARGS
},
13333 { (char *)"itostring_unsigned", _wrap_itostring_unsigned
, METH_VARARGS
},
13334 { (char *)"itostring", _wrap_itostring
, METH_VARARGS
},
13335 { (char *)"basename", _wrap_basename
, METH_VARARGS
},
13340 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */
13342 static void *_p_otk__OtkButtonTo_p_otk__OtkFocusWidget(void *x
) {
13343 return (void *)((otk::OtkFocusWidget
*) (otk::OtkFocusLabel
*) ((otk::OtkButton
*) x
));
13345 static void *_p_otk__OtkFocusLabelTo_p_otk__OtkFocusWidget(void *x
) {
13346 return (void *)((otk::OtkFocusWidget
*) ((otk::OtkFocusLabel
*) x
));
13348 static void *_p_otk__OtkButtonTo_p_otk__OtkWidget(void *x
) {
13349 return (void *)((otk::OtkWidget
*) (otk::OtkFocusWidget
*)(otk::OtkFocusLabel
*) ((otk::OtkButton
*) x
));
13351 static void *_p_otk__OtkAppWidgetTo_p_otk__OtkWidget(void *x
) {
13352 return (void *)((otk::OtkWidget
*) ((otk::OtkAppWidget
*) x
));
13354 static void *_p_otk__OtkFocusWidgetTo_p_otk__OtkWidget(void *x
) {
13355 return (void *)((otk::OtkWidget
*) ((otk::OtkFocusWidget
*) x
));
13357 static void *_p_otk__OtkFocusLabelTo_p_otk__OtkWidget(void *x
) {
13358 return (void *)((otk::OtkWidget
*) (otk::OtkFocusWidget
*) ((otk::OtkFocusLabel
*) x
));
13360 static void *_p_otk__OtkButtonTo_p_otk__OtkEventHandler(void *x
) {
13361 return (void *)((otk::OtkEventHandler
*) (otk::OtkWidget
*)(otk::OtkFocusWidget
*)(otk::OtkFocusLabel
*) ((otk::OtkButton
*) x
));
13363 static void *_p_otk__OtkAppWidgetTo_p_otk__OtkEventHandler(void *x
) {
13364 return (void *)((otk::OtkEventHandler
*) (otk::OtkWidget
*) ((otk::OtkAppWidget
*) x
));
13366 static void *_p_otk__OtkWidgetTo_p_otk__OtkEventHandler(void *x
) {
13367 return (void *)((otk::OtkEventHandler
*) ((otk::OtkWidget
*) x
));
13369 static void *_p_otk__OtkFocusWidgetTo_p_otk__OtkEventHandler(void *x
) {
13370 return (void *)((otk::OtkEventHandler
*) (otk::OtkWidget
*) ((otk::OtkFocusWidget
*) x
));
13372 static void *_p_otk__OtkFocusLabelTo_p_otk__OtkEventHandler(void *x
) {
13373 return (void *)((otk::OtkEventHandler
*) (otk::OtkWidget
*)(otk::OtkFocusWidget
*) ((otk::OtkFocusLabel
*) x
));
13375 static void *_p_otk__OtkButtonTo_p_otk__OtkFocusLabel(void *x
) {
13376 return (void *)((otk::OtkFocusLabel
*) ((otk::OtkButton
*) x
));
13378 static void *_p_otk__OtkApplicationTo_p_otk__OtkEventDispatcher(void *x
) {
13379 return (void *)((otk::OtkEventDispatcher
*) ((otk::OtkApplication
*) x
));
13381 static swig_type_info _swigt__p_otk__BGCCache
[] = {{"_p_otk__BGCCache", 0, "otk::BGCCache *", 0},{"_p_otk__BGCCache"},{0}};
13382 static swig_type_info _swigt__p_otk__BColor
[] = {{"_p_otk__BColor", 0, "otk::BColor *", 0},{"_p_otk__BColor"},{0}};
13383 static swig_type_info _swigt__p_otk__OBProperty__StringVect
[] = {{"_p_otk__OBProperty__StringVect", 0, "otk::OBProperty::StringVect *", 0},{"_p_otk__OBProperty__StringVect"},{0}};
13384 static swig_type_info _swigt__p_XFontStruct
[] = {{"_p_XFontStruct", 0, "XFontStruct *", 0},{"_p_XFontStruct"},{0}};
13385 static swig_type_info _swigt__p_otk__Configuration
[] = {{"_p_otk__Configuration", 0, "otk::Configuration *", 0},{"_p_otk__Configuration"},{0}};
13386 static swig_type_info _swigt__p_otk__PixmapMask
[] = {{"_p_otk__PixmapMask", 0, "otk::PixmapMask *", 0},{"_p_otk__PixmapMask"},{0}};
13387 static swig_type_info _swigt__p_Atom
[] = {{"_p_Atom", 0, "Atom *", 0},{"_p_Atom"},{0}};
13388 static swig_type_info _swigt__p_otk__PointerAssassin
[] = {{"_p_otk__PointerAssassin", 0, "otk::PointerAssassin *", 0},{"_p_otk__PointerAssassin"},{0}};
13389 static swig_type_info _swigt__p_otk__BImage
[] = {{"_p_otk__BImage", 0, "otk::BImage *", 0},{"_p_otk__BImage"},{0}};
13390 static swig_type_info _swigt__p_otk__OBTimer
[] = {{"_p_otk__OBTimer", 0, "otk::OBTimer *", 0},{"_p_otk__OBTimer"},{0}};
13391 static swig_type_info _swigt__p_otk__OtkWidget__OtkWidgetList
[] = {{"_p_otk__OtkWidget__OtkWidgetList", 0, "otk::OtkWidget::OtkWidgetList const &", 0},{"_p_otk__OtkWidget__OtkWidgetList"},{0}};
13392 static swig_type_info _swigt__p_bool
[] = {{"_p_bool", 0, "bool *", 0},{"_p_bool"},{0}};
13393 static swig_type_info _swigt__p_otk__OBDisplay
[] = {{"_p_otk__OBDisplay", 0, "otk::OBDisplay *", 0},{"_p_otk__OBDisplay"},{0}};
13394 static swig_type_info _swigt__p_Display
[] = {{"_p_Display", 0, "Display *", 0},{"_p_Display"},{0}};
13395 static swig_type_info _swigt__p_p_XColor
[] = {{"_p_p_XColor", 0, "XColor **", 0},{"_p_p_XColor"},{0}};
13396 static swig_type_info _swigt__p_XReparentEvent
[] = {{"_p_XReparentEvent", 0, "XReparentEvent *", 0},{"_p_XReparentEvent"},{0}};
13397 static swig_type_info _swigt__p_otk__BPen
[] = {{"_p_otk__BPen", 0, "otk::BPen *", 0},{"_p_otk__BPen"},{0}};
13398 static swig_type_info _swigt__p_otk__BImageControl
[] = {{"_p_otk__BImageControl", 0, "otk::BImageControl *", 0},{"_p_otk__BImageControl"},{0}};
13399 static swig_type_info _swigt__p_otk__OtkButton
[] = {{"_p_otk__OtkButton", 0, "otk::OtkButton *", 0},{"_p_otk__OtkButton"},{0}};
13400 static swig_type_info _swigt__p_otk__Rect
[] = {{"_p_otk__Rect", 0, "otk::Rect *", 0},{"_p_otk__Rect"},{0}};
13401 static swig_type_info _swigt__p_otk__Style
[] = {{"_p_otk__Style", 0, "otk::Style *", 0},{"_p_otk__Style"},{0}};
13402 static swig_type_info _swigt__p_XSelectionClearEvent
[] = {{"_p_XSelectionClearEvent", 0, "XSelectionClearEvent *", 0},{"_p_XSelectionClearEvent"},{0}};
13403 static swig_type_info _swigt__p_Visual
[] = {{"_p_Visual", 0, "Visual *", 0},{"_p_Visual"},{0}};
13404 static swig_type_info _swigt__p_timeval
[] = {{"_p_timeval", 0, "timeval *", 0},{"_p_timeval"},{0}};
13405 static swig_type_info _swigt__p_int
[] = {{"_p_int", 0, "int *", 0},{"_p_int"},{0}};
13406 static swig_type_info _swigt__p_otk__Strut
[] = {{"_p_otk__Strut", 0, "otk::Strut *", 0},{"_p_otk__Strut"},{0}};
13407 static swig_type_info _swigt__p_otk__OtkApplication
[] = {{"_p_otk__OtkApplication", 0, "otk::OtkApplication *", 0},{"_p_otk__OtkApplication"},{0}};
13408 static swig_type_info _swigt__p_XRectangle
[] = {{"_p_XRectangle", 0, "XRectangle *", 0},{"_p_XRectangle"},{0}};
13409 static swig_type_info _swigt__p_otk__OtkFocusWidget
[] = {{"_p_otk__OtkFocusWidget", 0, "otk::OtkFocusWidget *", 0},{"_p_otk__OtkButton", _p_otk__OtkButtonTo_p_otk__OtkFocusWidget
},{"_p_otk__OtkFocusWidget"},{"_p_otk__OtkFocusLabel", _p_otk__OtkFocusLabelTo_p_otk__OtkFocusWidget
},{0}};
13410 static swig_type_info _swigt__p_otk__OtkWidget
[] = {{"_p_otk__OtkWidget", 0, "otk::OtkWidget *", 0},{"_p_otk__OtkButton", _p_otk__OtkButtonTo_p_otk__OtkWidget
},{"_p_otk__OtkAppWidget", _p_otk__OtkAppWidgetTo_p_otk__OtkWidget
},{"_p_otk__OtkWidget"},{"_p_otk__OtkFocusWidget", _p_otk__OtkFocusWidgetTo_p_otk__OtkWidget
},{"_p_otk__OtkFocusLabel", _p_otk__OtkFocusLabelTo_p_otk__OtkWidget
},{0}};
13411 static swig_type_info _swigt__p_Cursor
[] = {{"_p_Cursor", 0, "Cursor *", 0},{"_p_Cursor"},{0}};
13412 static swig_type_info _swigt__p_Colormap
[] = {{"_p_Colormap", 0, "Colormap *", 0},{"_p_Colormap"},{0}};
13413 static swig_type_info _swigt__p_XGravityEvent
[] = {{"_p_XGravityEvent", 0, "XGravityEvent *", 0},{"_p_XGravityEvent"},{0}};
13414 static swig_type_info _swigt__p_XVisibilityEvent
[] = {{"_p_XVisibilityEvent", 0, "XVisibilityEvent *", 0},{"_p_XVisibilityEvent"},{0}};
13415 static swig_type_info _swigt__p_XPropertyEvent
[] = {{"_p_XPropertyEvent", 0, "XPropertyEvent *", 0},{"_p_XPropertyEvent"},{0}};
13416 static swig_type_info _swigt__p_Window
[] = {{"_p_Window", 0, "Window *", 0},{"_p_Window"},{0}};
13417 static swig_type_info _swigt__p_otk__BGCCacheContext
[] = {{"_p_otk__BGCCacheContext", 0, "otk::BGCCacheContext *", 0},{"_p_otk__BGCCacheContext"},{0}};
13418 static swig_type_info _swigt__p_XCreateWindowEvent
[] = {{"_p_XCreateWindowEvent", 0, "XCreateWindowEvent *", 0},{"_p_XCreateWindowEvent"},{0}};
13419 static swig_type_info _swigt__p_XDestroyWindowEvent
[] = {{"_p_XDestroyWindowEvent", 0, "XDestroyWindowEvent *", 0},{"_p_XDestroyWindowEvent"},{0}};
13420 static swig_type_info _swigt__p_Time
[] = {{"_p_Time", 0, "Time *", 0},{"_p_Time"},{0}};
13421 static swig_type_info _swigt__p_XCirculateEvent
[] = {{"_p_XCirculateEvent", 0, "XCirculateEvent *", 0},{"_p_XCirculateEvent"},{0}};
13422 static swig_type_info _swigt__p_XConfigureEvent
[] = {{"_p_XConfigureEvent", 0, "XConfigureEvent *", 0},{"_p_XConfigureEvent"},{0}};
13423 static swig_type_info _swigt__p_long
[] = {{"_p_long", 0, "long *", 0},{"_p_long"},{0}};
13424 static swig_type_info _swigt__p_otk__OBProperty
[] = {{"_p_otk__OBProperty", 0, "otk::OBProperty *", 0},{"_p_otk__OBProperty"},{0}};
13425 static swig_type_info _swigt__p_XTextProperty
[] = {{"_p_XTextProperty", 0, "XTextProperty *", 0},{"_p_XTextProperty"},{0}};
13426 static swig_type_info _swigt__p_otk__OtkEventHandler
[] = {{"_p_otk__OtkEventHandler", 0, "otk::OtkEventHandler *", 0},{"_p_otk__OtkEventHandler"},{"_p_otk__OtkButton", _p_otk__OtkButtonTo_p_otk__OtkEventHandler
},{"_p_otk__OtkAppWidget", _p_otk__OtkAppWidgetTo_p_otk__OtkEventHandler
},{"_p_otk__OtkWidget", _p_otk__OtkWidgetTo_p_otk__OtkEventHandler
},{"_p_otk__OtkFocusWidget", _p_otk__OtkFocusWidgetTo_p_otk__OtkEventHandler
},{"_p_otk__OtkFocusLabel", _p_otk__OtkFocusLabelTo_p_otk__OtkEventHandler
},{0}};
13427 static swig_type_info _swigt__p_XSelectionRequestEvent
[] = {{"_p_XSelectionRequestEvent", 0, "XSelectionRequestEvent *", 0},{"_p_XSelectionRequestEvent"},{0}};
13428 static swig_type_info _swigt__p_XCirculateRequestEvent
[] = {{"_p_XCirculateRequestEvent", 0, "XCirculateRequestEvent *", 0},{"_p_XCirculateRequestEvent"},{0}};
13429 static swig_type_info _swigt__p_XConfigureRequestEvent
[] = {{"_p_XConfigureRequestEvent", 0, "XConfigureRequestEvent *", 0},{"_p_XConfigureRequestEvent"},{0}};
13430 static swig_type_info _swigt__p_XMapRequestEvent
[] = {{"_p_XMapRequestEvent", 0, "XMapRequestEvent *", 0},{"_p_XMapRequestEvent"},{0}};
13431 static swig_type_info _swigt__p_XResizeRequestEvent
[] = {{"_p_XResizeRequestEvent", 0, "XResizeRequestEvent *", 0},{"_p_XResizeRequestEvent"},{0}};
13432 static swig_type_info _swigt__otk__OBTimeoutHandler
[] = {{"_otk__OBTimeoutHandler", 0, "otk::OBTimeoutHandler", 0},{"_otk__OBTimeoutHandler"},{0}};
13433 static swig_type_info _swigt__p_XftDraw
[] = {{"_p_XftDraw", 0, "XftDraw *", 0},{"_p_XftDraw"},{0}};
13434 static swig_type_info _swigt__p_otk__ScreenInfo
[] = {{"_p_otk__ScreenInfo", 0, "otk::ScreenInfo *", 0},{"_p_otk__ScreenInfo"},{0}};
13435 static swig_type_info _swigt__p_otk__OtkFocusLabel
[] = {{"_p_otk__OtkFocusLabel", 0, "otk::OtkFocusLabel *", 0},{"_p_otk__OtkButton", _p_otk__OtkButtonTo_p_otk__OtkFocusLabel
},{"_p_otk__OtkFocusLabel"},{0}};
13436 static swig_type_info _swigt__p_otk__BTexture
[] = {{"_p_otk__BTexture", 0, "otk::BTexture *", 0},{"_p_otk__BTexture"},{0}};
13437 static swig_type_info _swigt__p_otk__OtkEventDispatcher
[] = {{"_p_otk__OtkEventDispatcher", 0, "otk::OtkEventDispatcher *", 0},{"_p_otk__OtkApplication", _p_otk__OtkApplicationTo_p_otk__OtkEventDispatcher
},{"_p_otk__OtkEventDispatcher"},{0}};
13438 static swig_type_info _swigt__p_otk__BFont
[] = {{"_p_otk__BFont", 0, "otk::BFont *", 0},{"_p_otk__BFont"},{0}};
13439 static swig_type_info _swigt__p_otk__Point
[] = {{"_p_otk__Point", 0, "otk::Point *", 0},{"_p_otk__Point"},{0}};
13440 static swig_type_info _swigt__p_p_char
[] = {{"_p_p_char", 0, "char **", 0},{"_p_p_char"},{0}};
13441 static swig_type_info _swigt__p_XMotionEvent
[] = {{"_p_XMotionEvent", 0, "XMotionEvent *", 0},{"_p_XMotionEvent"},{0}};
13442 static swig_type_info _swigt__p_XButtonEvent
[] = {{"_p_XButtonEvent", 0, "XButtonEvent *", 0},{"_p_XButtonEvent"},{0}};
13443 static swig_type_info _swigt__p_XSelectionEvent
[] = {{"_p_XSelectionEvent", 0, "XSelectionEvent *", 0},{"_p_XSelectionEvent"},{0}};
13444 static swig_type_info _swigt__p_Pixmap
[] = {{"_p_Pixmap", 0, "Pixmap *", 0},{"_p_Pixmap"},{0}};
13445 static swig_type_info _swigt__p_GC
[] = {{"_p_GC", 0, "GC *", 0},{"_p_GC"},{0}};
13446 static swig_type_info _swigt__p_otk__OBTimerQueueManager
[] = {{"_p_otk__OBTimerQueueManager", 0, "otk::OBTimerQueueManager *", 0},{"_p_otk__OBTimerQueueManager"},{0}};
13447 static swig_type_info _swigt__p_otk__OtkAppWidget
[] = {{"_p_otk__OtkAppWidget", 0, "otk::OtkAppWidget *", 0},{"_p_otk__OtkAppWidget"},{0}};
13448 static swig_type_info _swigt__p_XKeyEvent
[] = {{"_p_XKeyEvent", 0, "XKeyEvent *", 0},{"_p_XKeyEvent"},{0}};
13449 static swig_type_info _swigt__p_unsigned_long
[] = {{"_p_unsigned_long", 0, "unsigned long *", 0},{"_p_unsigned_long"},{0}};
13450 static swig_type_info _swigt__p_XEvent
[] = {{"_p_XEvent", 0, "XEvent *", 0},{"_p_XEvent"},{0}};
13451 static swig_type_info _swigt__p_p_unsigned_long
[] = {{"_p_p_unsigned_long", 0, "unsigned long **", 0},{"_p_p_unsigned_long"},{0}};
13452 static swig_type_info _swigt__p_std__string
[] = {{"_p_std__string", 0, "std::string *", 0},{"_p_std__string"},{0}};
13453 static swig_type_info _swigt__p_XCrossingEvent
[] = {{"_p_XCrossingEvent", 0, "XCrossingEvent *", 0},{"_p_XCrossingEvent"},{0}};
13454 static swig_type_info _swigt__p_XMappingEvent
[] = {{"_p_XMappingEvent", 0, "XMappingEvent *", 0},{"_p_XMappingEvent"},{0}};
13455 static swig_type_info _swigt__p_otk__BGCCacheItem
[] = {{"_p_otk__BGCCacheItem", 0, "otk::BGCCacheItem *", 0},{"_p_otk__BGCCacheItem"},{0}};
13456 static swig_type_info _swigt__p_p_unsigned_int
[] = {{"_p_p_unsigned_int", 0, "unsigned int **", 0},{"_p_p_unsigned_int"},{0}};
13457 static swig_type_info _swigt__p_unsigned_int
[] = {{"_p_unsigned_int", 0, "unsigned int *", 0},{"_p_unsigned_int"},{0}};
13458 static swig_type_info _swigt__p_p_unsigned_char
[] = {{"_p_p_unsigned_char", 0, "unsigned char **", 0},{"_p_p_unsigned_char"},{0}};
13459 static swig_type_info _swigt__p_XClientMessageEvent
[] = {{"_p_XClientMessageEvent", 0, "XClientMessageEvent *", 0},{"_p_XClientMessageEvent"},{0}};
13460 static swig_type_info _swigt__p_XExposeEvent
[] = {{"_p_XExposeEvent", 0, "XExposeEvent *", 0},{"_p_XExposeEvent"},{0}};
13461 static swig_type_info _swigt__p_XFocusChangeEvent
[] = {{"_p_XFocusChangeEvent", 0, "XFocusChangeEvent *", 0},{"_p_XFocusChangeEvent"},{0}};
13462 static swig_type_info _swigt__p_XGraphicsExposeEvent
[] = {{"_p_XGraphicsExposeEvent", 0, "XGraphicsExposeEvent *", 0},{"_p_XGraphicsExposeEvent"},{0}};
13463 static swig_type_info _swigt__p_XNoExposeEvent
[] = {{"_p_XNoExposeEvent", 0, "XNoExposeEvent *", 0},{"_p_XNoExposeEvent"},{0}};
13464 static swig_type_info _swigt__p_XMapEvent
[] = {{"_p_XMapEvent", 0, "XMapEvent *", 0},{"_p_XMapEvent"},{0}};
13465 static swig_type_info _swigt__p_XUnmapEvent
[] = {{"_p_XUnmapEvent", 0, "XUnmapEvent *", 0},{"_p_XUnmapEvent"},{0}};
13466 static swig_type_info _swigt__p_XColormapEvent
[] = {{"_p_XColormapEvent", 0, "XColormapEvent *", 0},{"_p_XColormapEvent"},{0}};
13468 static swig_type_info
*swig_types_initial
[] = {
13469 _swigt__p_otk__BGCCache
,
13470 _swigt__p_otk__BColor
,
13471 _swigt__p_otk__OBProperty__StringVect
,
13472 _swigt__p_XFontStruct
,
13473 _swigt__p_otk__Configuration
,
13474 _swigt__p_otk__PixmapMask
,
13476 _swigt__p_otk__PointerAssassin
,
13477 _swigt__p_otk__BImage
,
13478 _swigt__p_otk__OBTimer
,
13479 _swigt__p_otk__OtkWidget__OtkWidgetList
,
13481 _swigt__p_otk__OBDisplay
,
13483 _swigt__p_p_XColor
,
13484 _swigt__p_XReparentEvent
,
13485 _swigt__p_otk__BPen
,
13486 _swigt__p_otk__BImageControl
,
13487 _swigt__p_otk__OtkButton
,
13488 _swigt__p_otk__Rect
,
13489 _swigt__p_otk__Style
,
13490 _swigt__p_XSelectionClearEvent
,
13494 _swigt__p_otk__Strut
,
13495 _swigt__p_otk__OtkApplication
,
13496 _swigt__p_XRectangle
,
13497 _swigt__p_otk__OtkFocusWidget
,
13498 _swigt__p_otk__OtkWidget
,
13500 _swigt__p_Colormap
,
13501 _swigt__p_XGravityEvent
,
13502 _swigt__p_XVisibilityEvent
,
13503 _swigt__p_XPropertyEvent
,
13505 _swigt__p_otk__BGCCacheContext
,
13506 _swigt__p_XCreateWindowEvent
,
13507 _swigt__p_XDestroyWindowEvent
,
13509 _swigt__p_XCirculateEvent
,
13510 _swigt__p_XConfigureEvent
,
13512 _swigt__p_otk__OBProperty
,
13513 _swigt__p_XTextProperty
,
13514 _swigt__p_otk__OtkEventHandler
,
13515 _swigt__p_XSelectionRequestEvent
,
13516 _swigt__p_XCirculateRequestEvent
,
13517 _swigt__p_XConfigureRequestEvent
,
13518 _swigt__p_XMapRequestEvent
,
13519 _swigt__p_XResizeRequestEvent
,
13520 _swigt__otk__OBTimeoutHandler
,
13522 _swigt__p_otk__ScreenInfo
,
13523 _swigt__p_otk__OtkFocusLabel
,
13524 _swigt__p_otk__BTexture
,
13525 _swigt__p_otk__OtkEventDispatcher
,
13526 _swigt__p_otk__BFont
,
13527 _swigt__p_otk__Point
,
13529 _swigt__p_XMotionEvent
,
13530 _swigt__p_XButtonEvent
,
13531 _swigt__p_XSelectionEvent
,
13534 _swigt__p_otk__OBTimerQueueManager
,
13535 _swigt__p_otk__OtkAppWidget
,
13536 _swigt__p_XKeyEvent
,
13537 _swigt__p_unsigned_long
,
13539 _swigt__p_p_unsigned_long
,
13540 _swigt__p_std__string
,
13541 _swigt__p_XCrossingEvent
,
13542 _swigt__p_XMappingEvent
,
13543 _swigt__p_otk__BGCCacheItem
,
13544 _swigt__p_p_unsigned_int
,
13545 _swigt__p_unsigned_int
,
13546 _swigt__p_p_unsigned_char
,
13547 _swigt__p_XClientMessageEvent
,
13548 _swigt__p_XExposeEvent
,
13549 _swigt__p_XFocusChangeEvent
,
13550 _swigt__p_XGraphicsExposeEvent
,
13551 _swigt__p_XNoExposeEvent
,
13552 _swigt__p_XMapEvent
,
13553 _swigt__p_XUnmapEvent
,
13554 _swigt__p_XColormapEvent
,
13559 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */
13561 static swig_const_info swig_const_table
[] = {
13562 { SWIG_PY_INT
, (char *)"OtkWidget_Horizontal", (long) otk::OtkWidget::Horizontal
, 0, 0, 0},
13563 { SWIG_PY_INT
, (char *)"OtkWidget_Vertical", (long) otk::OtkWidget::Vertical
, 0, 0, 0},
13564 { SWIG_PY_INT
, (char *)"OBProperty_Atom_Cardinal", (long) otk::OBProperty::Atom_Cardinal
, 0, 0, 0},
13565 { SWIG_PY_INT
, (char *)"OBProperty_Atom_Window", (long) otk::OBProperty::Atom_Window
, 0, 0, 0},
13566 { SWIG_PY_INT
, (char *)"OBProperty_Atom_Pixmap", (long) otk::OBProperty::Atom_Pixmap
, 0, 0, 0},
13567 { SWIG_PY_INT
, (char *)"OBProperty_Atom_Atom", (long) otk::OBProperty::Atom_Atom
, 0, 0, 0},
13568 { SWIG_PY_INT
, (char *)"OBProperty_Atom_String", (long) otk::OBProperty::Atom_String
, 0, 0, 0},
13569 { SWIG_PY_INT
, (char *)"OBProperty_Atom_Utf8", (long) otk::OBProperty::Atom_Utf8
, 0, 0, 0},
13570 { SWIG_PY_INT
, (char *)"OBProperty_openbox_pid", (long) otk::OBProperty::openbox_pid
, 0, 0, 0},
13571 { SWIG_PY_INT
, (char *)"OBProperty_wm_colormap_windows", (long) otk::OBProperty::wm_colormap_windows
, 0, 0, 0},
13572 { SWIG_PY_INT
, (char *)"OBProperty_wm_protocols", (long) otk::OBProperty::wm_protocols
, 0, 0, 0},
13573 { SWIG_PY_INT
, (char *)"OBProperty_wm_state", (long) otk::OBProperty::wm_state
, 0, 0, 0},
13574 { SWIG_PY_INT
, (char *)"OBProperty_wm_delete_window", (long) otk::OBProperty::wm_delete_window
, 0, 0, 0},
13575 { SWIG_PY_INT
, (char *)"OBProperty_wm_take_focus", (long) otk::OBProperty::wm_take_focus
, 0, 0, 0},
13576 { SWIG_PY_INT
, (char *)"OBProperty_wm_change_state", (long) otk::OBProperty::wm_change_state
, 0, 0, 0},
13577 { SWIG_PY_INT
, (char *)"OBProperty_wm_name", (long) otk::OBProperty::wm_name
, 0, 0, 0},
13578 { SWIG_PY_INT
, (char *)"OBProperty_wm_icon_name", (long) otk::OBProperty::wm_icon_name
, 0, 0, 0},
13579 { SWIG_PY_INT
, (char *)"OBProperty_wm_class", (long) otk::OBProperty::wm_class
, 0, 0, 0},
13580 { SWIG_PY_INT
, (char *)"OBProperty_motif_wm_hints", (long) otk::OBProperty::motif_wm_hints
, 0, 0, 0},
13581 { SWIG_PY_INT
, (char *)"OBProperty_blackbox_attributes", (long) otk::OBProperty::blackbox_attributes
, 0, 0, 0},
13582 { SWIG_PY_INT
, (char *)"OBProperty_blackbox_change_attributes", (long) otk::OBProperty::blackbox_change_attributes
, 0, 0, 0},
13583 { SWIG_PY_INT
, (char *)"OBProperty_blackbox_hints", (long) otk::OBProperty::blackbox_hints
, 0, 0, 0},
13584 { SWIG_PY_INT
, (char *)"OBProperty_blackbox_structure_messages", (long) otk::OBProperty::blackbox_structure_messages
, 0, 0, 0},
13585 { SWIG_PY_INT
, (char *)"OBProperty_blackbox_notify_startup", (long) otk::OBProperty::blackbox_notify_startup
, 0, 0, 0},
13586 { SWIG_PY_INT
, (char *)"OBProperty_blackbox_notify_window_add", (long) otk::OBProperty::blackbox_notify_window_add
, 0, 0, 0},
13587 { SWIG_PY_INT
, (char *)"OBProperty_blackbox_notify_window_del", (long) otk::OBProperty::blackbox_notify_window_del
, 0, 0, 0},
13588 { SWIG_PY_INT
, (char *)"OBProperty_blackbox_notify_window_focus", (long) otk::OBProperty::blackbox_notify_window_focus
, 0, 0, 0},
13589 { SWIG_PY_INT
, (char *)"OBProperty_blackbox_notify_current_workspace", (long) otk::OBProperty::blackbox_notify_current_workspace
, 0, 0, 0},
13590 { SWIG_PY_INT
, (char *)"OBProperty_blackbox_notify_workspace_count", (long) otk::OBProperty::blackbox_notify_workspace_count
, 0, 0, 0},
13591 { SWIG_PY_INT
, (char *)"OBProperty_blackbox_notify_window_raise", (long) otk::OBProperty::blackbox_notify_window_raise
, 0, 0, 0},
13592 { SWIG_PY_INT
, (char *)"OBProperty_blackbox_notify_window_lower", (long) otk::OBProperty::blackbox_notify_window_lower
, 0, 0, 0},
13593 { SWIG_PY_INT
, (char *)"OBProperty_blackbox_change_workspace", (long) otk::OBProperty::blackbox_change_workspace
, 0, 0, 0},
13594 { SWIG_PY_INT
, (char *)"OBProperty_blackbox_change_window_focus", (long) otk::OBProperty::blackbox_change_window_focus
, 0, 0, 0},
13595 { SWIG_PY_INT
, (char *)"OBProperty_blackbox_cycle_window_focus", (long) otk::OBProperty::blackbox_cycle_window_focus
, 0, 0, 0},
13596 { SWIG_PY_INT
, (char *)"OBProperty_openbox_show_root_menu", (long) otk::OBProperty::openbox_show_root_menu
, 0, 0, 0},
13597 { SWIG_PY_INT
, (char *)"OBProperty_openbox_show_workspace_menu", (long) otk::OBProperty::openbox_show_workspace_menu
, 0, 0, 0},
13598 { SWIG_PY_INT
, (char *)"OBProperty_net_supported", (long) otk::OBProperty::net_supported
, 0, 0, 0},
13599 { SWIG_PY_INT
, (char *)"OBProperty_net_client_list", (long) otk::OBProperty::net_client_list
, 0, 0, 0},
13600 { SWIG_PY_INT
, (char *)"OBProperty_net_client_list_stacking", (long) otk::OBProperty::net_client_list_stacking
, 0, 0, 0},
13601 { SWIG_PY_INT
, (char *)"OBProperty_net_number_of_desktops", (long) otk::OBProperty::net_number_of_desktops
, 0, 0, 0},
13602 { SWIG_PY_INT
, (char *)"OBProperty_net_desktop_geometry", (long) otk::OBProperty::net_desktop_geometry
, 0, 0, 0},
13603 { SWIG_PY_INT
, (char *)"OBProperty_net_desktop_viewport", (long) otk::OBProperty::net_desktop_viewport
, 0, 0, 0},
13604 { SWIG_PY_INT
, (char *)"OBProperty_net_current_desktop", (long) otk::OBProperty::net_current_desktop
, 0, 0, 0},
13605 { SWIG_PY_INT
, (char *)"OBProperty_net_desktop_names", (long) otk::OBProperty::net_desktop_names
, 0, 0, 0},
13606 { SWIG_PY_INT
, (char *)"OBProperty_net_active_window", (long) otk::OBProperty::net_active_window
, 0, 0, 0},
13607 { SWIG_PY_INT
, (char *)"OBProperty_net_workarea", (long) otk::OBProperty::net_workarea
, 0, 0, 0},
13608 { SWIG_PY_INT
, (char *)"OBProperty_net_supporting_wm_check", (long) otk::OBProperty::net_supporting_wm_check
, 0, 0, 0},
13609 { SWIG_PY_INT
, (char *)"OBProperty_net_close_window", (long) otk::OBProperty::net_close_window
, 0, 0, 0},
13610 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_moveresize", (long) otk::OBProperty::net_wm_moveresize
, 0, 0, 0},
13611 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_name", (long) otk::OBProperty::net_wm_name
, 0, 0, 0},
13612 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_visible_name", (long) otk::OBProperty::net_wm_visible_name
, 0, 0, 0},
13613 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_icon_name", (long) otk::OBProperty::net_wm_icon_name
, 0, 0, 0},
13614 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_visible_icon_name", (long) otk::OBProperty::net_wm_visible_icon_name
, 0, 0, 0},
13615 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_desktop", (long) otk::OBProperty::net_wm_desktop
, 0, 0, 0},
13616 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_window_type", (long) otk::OBProperty::net_wm_window_type
, 0, 0, 0},
13617 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_state", (long) otk::OBProperty::net_wm_state
, 0, 0, 0},
13618 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_strut", (long) otk::OBProperty::net_wm_strut
, 0, 0, 0},
13619 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_allowed_actions", (long) otk::OBProperty::net_wm_allowed_actions
, 0, 0, 0},
13620 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_window_type_desktop", (long) otk::OBProperty::net_wm_window_type_desktop
, 0, 0, 0},
13621 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_window_type_dock", (long) otk::OBProperty::net_wm_window_type_dock
, 0, 0, 0},
13622 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_window_type_toolbar", (long) otk::OBProperty::net_wm_window_type_toolbar
, 0, 0, 0},
13623 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_window_type_menu", (long) otk::OBProperty::net_wm_window_type_menu
, 0, 0, 0},
13624 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_window_type_utility", (long) otk::OBProperty::net_wm_window_type_utility
, 0, 0, 0},
13625 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_window_type_splash", (long) otk::OBProperty::net_wm_window_type_splash
, 0, 0, 0},
13626 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_window_type_dialog", (long) otk::OBProperty::net_wm_window_type_dialog
, 0, 0, 0},
13627 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_window_type_normal", (long) otk::OBProperty::net_wm_window_type_normal
, 0, 0, 0},
13628 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_moveresize_size_topleft", (long) otk::OBProperty::net_wm_moveresize_size_topleft
, 0, 0, 0},
13629 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_moveresize_size_topright", (long) otk::OBProperty::net_wm_moveresize_size_topright
, 0, 0, 0},
13630 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_moveresize_size_bottomleft", (long) otk::OBProperty::net_wm_moveresize_size_bottomleft
, 0, 0, 0},
13631 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_moveresize_size_bottomright", (long) otk::OBProperty::net_wm_moveresize_size_bottomright
, 0, 0, 0},
13632 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_moveresize_move", (long) otk::OBProperty::net_wm_moveresize_move
, 0, 0, 0},
13633 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_action_move", (long) otk::OBProperty::net_wm_action_move
, 0, 0, 0},
13634 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_action_resize", (long) otk::OBProperty::net_wm_action_resize
, 0, 0, 0},
13635 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_action_shade", (long) otk::OBProperty::net_wm_action_shade
, 0, 0, 0},
13636 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_action_maximize_horz", (long) otk::OBProperty::net_wm_action_maximize_horz
, 0, 0, 0},
13637 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_action_maximize_vert", (long) otk::OBProperty::net_wm_action_maximize_vert
, 0, 0, 0},
13638 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_action_change_desktop", (long) otk::OBProperty::net_wm_action_change_desktop
, 0, 0, 0},
13639 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_action_close", (long) otk::OBProperty::net_wm_action_close
, 0, 0, 0},
13640 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_state_modal", (long) otk::OBProperty::net_wm_state_modal
, 0, 0, 0},
13641 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_state_sticky", (long) otk::OBProperty::net_wm_state_sticky
, 0, 0, 0},
13642 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_state_maximized_vert", (long) otk::OBProperty::net_wm_state_maximized_vert
, 0, 0, 0},
13643 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_state_maximized_horz", (long) otk::OBProperty::net_wm_state_maximized_horz
, 0, 0, 0},
13644 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_state_shaded", (long) otk::OBProperty::net_wm_state_shaded
, 0, 0, 0},
13645 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_state_skip_taskbar", (long) otk::OBProperty::net_wm_state_skip_taskbar
, 0, 0, 0},
13646 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_state_skip_pager", (long) otk::OBProperty::net_wm_state_skip_pager
, 0, 0, 0},
13647 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_state_hidden", (long) otk::OBProperty::net_wm_state_hidden
, 0, 0, 0},
13648 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_state_fullscreen", (long) otk::OBProperty::net_wm_state_fullscreen
, 0, 0, 0},
13649 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_state_above", (long) otk::OBProperty::net_wm_state_above
, 0, 0, 0},
13650 { SWIG_PY_INT
, (char *)"OBProperty_net_wm_state_below", (long) otk::OBProperty::net_wm_state_below
, 0, 0, 0},
13651 { SWIG_PY_INT
, (char *)"OBProperty_kde_net_system_tray_windows", (long) otk::OBProperty::kde_net_system_tray_windows
, 0, 0, 0},
13652 { SWIG_PY_INT
, (char *)"OBProperty_kde_net_wm_system_tray_window_for", (long) otk::OBProperty::kde_net_wm_system_tray_window_for
, 0, 0, 0},
13653 { SWIG_PY_INT
, (char *)"OBProperty_kde_net_wm_window_type_override", (long) otk::OBProperty::kde_net_wm_window_type_override
, 0, 0, 0},
13654 { SWIG_PY_INT
, (char *)"OBProperty_NUM_ATOMS", (long) otk::OBProperty::NUM_ATOMS
, 0, 0, 0},
13655 { SWIG_PY_INT
, (char *)"OBProperty_ascii", (long) otk::OBProperty::ascii
, 0, 0, 0},
13656 { SWIG_PY_INT
, (char *)"OBProperty_utf8", (long) otk::OBProperty::utf8
, 0, 0, 0},
13657 { SWIG_PY_INT
, (char *)"OBProperty_NUM_STRING_TYPE", (long) otk::OBProperty::NUM_STRING_TYPE
, 0, 0, 0},
13658 { SWIG_PY_INT
, (char *)"Style_ButtonFocus", (long) otk::Style::ButtonFocus
, 0, 0, 0},
13659 { SWIG_PY_INT
, (char *)"Style_ButtonUnfocus", (long) otk::Style::ButtonUnfocus
, 0, 0, 0},
13660 { SWIG_PY_INT
, (char *)"Style_TitleFocus", (long) otk::Style::TitleFocus
, 0, 0, 0},
13661 { SWIG_PY_INT
, (char *)"Style_TitleUnfocus", (long) otk::Style::TitleUnfocus
, 0, 0, 0},
13662 { SWIG_PY_INT
, (char *)"Style_LabelFocus", (long) otk::Style::LabelFocus
, 0, 0, 0},
13663 { SWIG_PY_INT
, (char *)"Style_LabelUnfocus", (long) otk::Style::LabelUnfocus
, 0, 0, 0},
13664 { SWIG_PY_INT
, (char *)"Style_HandleFocus", (long) otk::Style::HandleFocus
, 0, 0, 0},
13665 { SWIG_PY_INT
, (char *)"Style_HandleUnfocus", (long) otk::Style::HandleUnfocus
, 0, 0, 0},
13666 { SWIG_PY_INT
, (char *)"Style_GripFocus", (long) otk::Style::GripFocus
, 0, 0, 0},
13667 { SWIG_PY_INT
, (char *)"Style_GripUnfocus", (long) otk::Style::GripUnfocus
, 0, 0, 0},
13668 { SWIG_PY_INT
, (char *)"Style_LeftJustify", (long) otk::Style::LeftJustify
, 0, 0, 0},
13669 { SWIG_PY_INT
, (char *)"Style_RightJustify", (long) otk::Style::RightJustify
, 0, 0, 0},
13670 { SWIG_PY_INT
, (char *)"Style_CenterJustify", (long) otk::Style::CenterJustify
, 0, 0, 0},
13671 { SWIG_PY_INT
, (char *)"Style_RoundBullet", (long) otk::Style::RoundBullet
, 0, 0, 0},
13672 { SWIG_PY_INT
, (char *)"Style_TriangleBullet", (long) otk::Style::TriangleBullet
, 0, 0, 0},
13673 { SWIG_PY_INT
, (char *)"Style_SquareBullet", (long) otk::Style::SquareBullet
, 0, 0, 0},
13674 { SWIG_PY_INT
, (char *)"Style_NoBullet", (long) otk::Style::NoBullet
, 0, 0, 0},
13675 { SWIG_PY_INT
, (char *)"BTexture_NoTexture", (long) otk::BTexture::NoTexture
, 0, 0, 0},
13676 { SWIG_PY_INT
, (char *)"BTexture_Flat", (long) otk::BTexture::Flat
, 0, 0, 0},
13677 { SWIG_PY_INT
, (char *)"BTexture_Sunken", (long) otk::BTexture::Sunken
, 0, 0, 0},
13678 { SWIG_PY_INT
, (char *)"BTexture_Raised", (long) otk::BTexture::Raised
, 0, 0, 0},
13679 { SWIG_PY_INT
, (char *)"BTexture_Solid", (long) otk::BTexture::Solid
, 0, 0, 0},
13680 { SWIG_PY_INT
, (char *)"BTexture_Gradient", (long) otk::BTexture::Gradient
, 0, 0, 0},
13681 { SWIG_PY_INT
, (char *)"BTexture_Horizontal", (long) otk::BTexture::Horizontal
, 0, 0, 0},
13682 { SWIG_PY_INT
, (char *)"BTexture_Vertical", (long) otk::BTexture::Vertical
, 0, 0, 0},
13683 { SWIG_PY_INT
, (char *)"BTexture_Diagonal", (long) otk::BTexture::Diagonal
, 0, 0, 0},
13684 { SWIG_PY_INT
, (char *)"BTexture_CrossDiagonal", (long) otk::BTexture::CrossDiagonal
, 0, 0, 0},
13685 { SWIG_PY_INT
, (char *)"BTexture_Rectangle", (long) otk::BTexture::Rectangle
, 0, 0, 0},
13686 { SWIG_PY_INT
, (char *)"BTexture_Pyramid", (long) otk::BTexture::Pyramid
, 0, 0, 0},
13687 { SWIG_PY_INT
, (char *)"BTexture_PipeCross", (long) otk::BTexture::PipeCross
, 0, 0, 0},
13688 { SWIG_PY_INT
, (char *)"BTexture_Elliptic", (long) otk::BTexture::Elliptic
, 0, 0, 0},
13689 { SWIG_PY_INT
, (char *)"BTexture_Bevel1", (long) otk::BTexture::Bevel1
, 0, 0, 0},
13690 { SWIG_PY_INT
, (char *)"BTexture_Bevel2", (long) otk::BTexture::Bevel2
, 0, 0, 0},
13691 { SWIG_PY_INT
, (char *)"BTexture_Border", (long) otk::BTexture::Border
, 0, 0, 0},
13692 { SWIG_PY_INT
, (char *)"BTexture_Invert", (long) otk::BTexture::Invert
, 0, 0, 0},
13693 { SWIG_PY_INT
, (char *)"BTexture_Parent_Relative", (long) otk::BTexture::Parent_Relative
, 0, 0, 0},
13694 { SWIG_PY_INT
, (char *)"BTexture_Interlaced", (long) otk::BTexture::Interlaced
, 0, 0, 0},
13704 SWIGEXPORT(void) SWIG_init(void) {
13705 static PyObject
*SWIG_globals
= 0;
13706 static int typeinit
= 0;
13709 if (!SWIG_globals
) SWIG_globals
= SWIG_newvarlink();
13710 m
= Py_InitModule((char *) SWIG_name
, SwigMethods
);
13711 d
= PyModule_GetDict(m
);
13714 for (i
= 0; swig_types_initial
[i
]; i
++) {
13715 swig_types
[i
] = SWIG_TypeRegister(swig_types_initial
[i
]);
13719 SWIG_InstallConstants(d
,swig_const_table
);
13721 PyDict_SetItemString(d
,(char*)"cvar", SWIG_globals
);
13722 SWIG_addvarlink(SWIG_globals
,(char*)"OBDisplay_display",_wrap_OBDisplay_display_get
, _wrap_OBDisplay_display_set
);
13723 SWIG_addvarlink(SWIG_globals
,(char*)"BSENTINEL",_wrap_BSENTINEL_get
, _wrap_BSENTINEL_set
);