1 /* ----------------------------------------------------------------------------
2 * This file was automatically generated by SWIG (http://www.swig.org).
3 * Version 1.3.17u-20021128-1508
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__Point swig_types[0]
649 #define SWIGTYPE_p_ob__Client swig_types[1]
650 #define SWIGTYPE_p_XMapEvent swig_types[2]
651 #define SWIGTYPE_p_XUnmapEvent swig_types[3]
652 #define SWIGTYPE_p_XColormapEvent swig_types[4]
653 #define SWIGTYPE_p_XNoExposeEvent swig_types[5]
654 #define SWIGTYPE_p_XGraphicsExposeEvent swig_types[6]
655 #define SWIGTYPE_p_XExposeEvent swig_types[7]
656 #define SWIGTYPE_p_XFocusChangeEvent swig_types[8]
657 #define SWIGTYPE_p_XClientMessageEvent swig_types[9]
658 #define SWIGTYPE_p_ob__MouseData swig_types[10]
659 #define SWIGTYPE_p_XSelectionClearEvent swig_types[11]
660 #define SWIGTYPE_p_otk__Rect swig_types[12]
661 #define SWIGTYPE_p_Visual swig_types[13]
662 #define SWIGTYPE_p_XResizeRequestEvent swig_types[14]
663 #define SWIGTYPE_p_XMapRequestEvent swig_types[15]
664 #define SWIGTYPE_p_XConfigureRequestEvent swig_types[16]
665 #define SWIGTYPE_p_XCirculateRequestEvent swig_types[17]
666 #define SWIGTYPE_p_XGravityEvent swig_types[18]
667 #define SWIGTYPE_p_XVisibilityEvent swig_types[19]
668 #define SWIGTYPE_p_XPropertyEvent swig_types[20]
669 #define SWIGTYPE_p_XSelectionRequestEvent swig_types[21]
670 #define SWIGTYPE_p_ob__Cursors swig_types[22]
671 #define SWIGTYPE_p_otk__RenderControl swig_types[23]
672 #define SWIGTYPE_p_ob__MwmHints swig_types[24]
673 #define SWIGTYPE_p_ob__Screen swig_types[25]
674 #define SWIGTYPE_p_ob__Frame swig_types[26]
675 #define SWIGTYPE_p_ob__KeyData swig_types[27]
676 #define SWIGTYPE_p_XCirculateEvent swig_types[28]
677 #define SWIGTYPE_p_XConfigureEvent swig_types[29]
678 #define SWIGTYPE_p_XRectangle swig_types[30]
679 #define SWIGTYPE_p_otk__ustring swig_types[31]
680 #define SWIGTYPE_p_XCrossingEvent swig_types[32]
681 #define SWIGTYPE_p_otk__Display swig_types[33]
682 #define SWIGTYPE_p_Display swig_types[34]
683 #define SWIGTYPE_p_XMappingEvent swig_types[35]
684 #define SWIGTYPE_p_otk__EventHandler swig_types[36]
685 #define SWIGTYPE_p_XReparentEvent swig_types[37]
686 #define SWIGTYPE_p_otk__EventDispatcher swig_types[38]
687 #define SWIGTYPE_p_ob__Bindings swig_types[39]
688 #define SWIGTYPE_p_ob__Openbox swig_types[40]
689 #define SWIGTYPE_p_ob__Actions swig_types[41]
690 #define SWIGTYPE_p_otk__Widget swig_types[42]
691 #define SWIGTYPE_p_XEvent swig_types[43]
692 #define SWIGTYPE_p_otk__Property swig_types[44]
693 #define SWIGTYPE_p_PyObject swig_types[45]
694 #define SWIGTYPE_p_otk__ScreenInfo swig_types[46]
695 #define SWIGTYPE_p_otk__RenderStyle swig_types[47]
696 #define SWIGTYPE_p_ob__EventData swig_types[48]
697 #define SWIGTYPE_p_XModifierKeymap swig_types[49]
698 #define SWIGTYPE_p_XCreateWindowEvent swig_types[50]
699 #define SWIGTYPE_p_XDestroyWindowEvent swig_types[51]
700 #define SWIGTYPE_p_otk__Property__StringVect swig_types[52]
701 #define SWIGTYPE_p_ob__WidgetBase swig_types[53]
702 #define SWIGTYPE_p_otk__Atoms swig_types[54]
703 #define SWIGTYPE_p_XKeyEvent swig_types[55]
704 #define SWIGTYPE_p_int swig_types[56]
705 #define SWIGTYPE_p_otk__Strut swig_types[57]
706 #define SWIGTYPE_p_p_unsigned_long swig_types[58]
707 #define SWIGTYPE_p_unsigned_long 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 static swig_type_info
*swig_types
[64];
713 /* -------- TYPES TABLE (END) -------- */
716 /*-----------------------------------------------
717 @(target):= _openbox.so
718 ------------------------------------------------*/
719 #define SWIG_init init_openbox
721 #define SWIG_name "_openbox"
724 # include "../config.h"
728 #include "openbox.hh"
731 #include "bindings.hh"
732 #include "actions.hh"
734 #include "otk/otk.hh"
737 #define SWIG_MemoryError 1
738 #define SWIG_IOError 2
739 #define SWIG_RuntimeError 3
740 #define SWIG_IndexError 4
741 #define SWIG_TypeError 5
742 #define SWIG_DivisionByZero 6
743 #define SWIG_OverflowError 7
744 #define SWIG_SyntaxError 8
745 #define SWIG_ValueError 9
746 #define SWIG_SystemError 10
747 #define SWIG_UnknownError 99
750 static void _SWIG_exception(int code
, const char *msg
) {
752 case SWIG_MemoryError
:
753 PyErr_SetString(PyExc_MemoryError
,msg
);
756 PyErr_SetString(PyExc_IOError
,msg
);
758 case SWIG_RuntimeError
:
759 PyErr_SetString(PyExc_RuntimeError
,msg
);
761 case SWIG_IndexError
:
762 PyErr_SetString(PyExc_IndexError
,msg
);
765 PyErr_SetString(PyExc_TypeError
,msg
);
767 case SWIG_DivisionByZero
:
768 PyErr_SetString(PyExc_ZeroDivisionError
,msg
);
770 case SWIG_OverflowError
:
771 PyErr_SetString(PyExc_OverflowError
,msg
);
773 case SWIG_SyntaxError
:
774 PyErr_SetString(PyExc_SyntaxError
,msg
);
776 case SWIG_ValueError
:
777 PyErr_SetString(PyExc_ValueError
,msg
);
779 case SWIG_SystemError
:
780 PyErr_SetString(PyExc_SystemError
,msg
);
783 PyErr_SetString(PyExc_RuntimeError
,msg
);
788 #define SWIG_exception(a,b) { _SWIG_exception(a,b); SWIG_fail; }
796 PyObject
* SwigInt_FromBool(bool b
) {
797 return PyInt_FromLong(b
? 1L : 0L);
799 double SwigNumber_Check(PyObject
* o
) {
800 return PyFloat_Check(o
) || PyInt_Check(o
);
802 double SwigNumber_AsDouble(PyObject
* o
) {
803 return (PyFloat_Check(o
) ? PyFloat_AsDouble(o
) : double(PyInt_AsLong(o
)));
805 PyObject
* SwigString_FromString(const std::string
& s
) {
806 return PyString_FromString(s
.c_str());
808 std::string
SwigString_AsString(PyObject
* o
) {
809 return std::string(PyString_AsString(o
));
818 ob::Openbox
*Openbox_instance() { return ob::openbox
; }
822 void python_callback(PyObject
*func
, MouseData
*data
)
827 arglist
= Py_BuildValue("(O)", SWIG_NewPointerObj((void *) data
,
828 SWIGTYPE_p_ob__MouseData
,
832 result
= PyEval_CallObject(func
, arglist
);
833 if (!result
|| PyErr_Occurred()) {
834 // an exception occured in the script, display it
842 void python_callback(PyObject
*func
, EventData
*data
)
847 arglist
= Py_BuildValue("(O)", SWIG_NewPointerObj((void *) data
,
848 SWIGTYPE_p_ob__EventData
,
852 result
= PyEval_CallObject(func
, arglist
);
853 if (!result
|| PyErr_Occurred()) {
854 // an exception occured in the script, display it
862 void python_callback(PyObject
*func
, KeyData
*data
)
867 arglist
= Py_BuildValue("(O)", SWIG_NewPointerObj((void *) data
,
868 SWIGTYPE_p_ob__KeyData
,
872 result
= PyEval_CallObject(func
, arglist
);
873 if (!result
|| PyErr_Occurred()) {
874 // an exception occured in the script, display it
888 #include "ustring.hh"
891 otk::Display
*Display_instance() { return otk::display
; }
894 const otk::Atoms
& Property_atoms() { return otk::Property::atoms
; }
896 ob::Client
*ob_Screen_client(ob::Screen
*self
,int i
){
897 if (i
< 0 || i
>= (int)self
->clients
.size())
899 ob::Client::List::iterator it
= self
->clients
.begin();
903 int ob_Screen_clientCount(ob::Screen
const *self
){
904 return (int) self
->clients
.size();
909 static PyObject
*_wrap_Openbox_instance(PyObject
*self
, PyObject
*args
) {
913 if(!PyArg_ParseTuple(args
,(char *)":Openbox_instance")) goto fail
;
914 result
= (ob::Openbox
*)Openbox_instance();
916 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_ob__Openbox
, 0);
923 static PyObject
*_wrap_Display_instance(PyObject
*self
, PyObject
*args
) {
925 otk::Display
*result
;
927 if(!PyArg_ParseTuple(args
,(char *)":Display_instance")) goto fail
;
928 result
= (otk::Display
*)Display_instance();
930 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Display
, 0);
937 static PyObject
*_wrap_Property_atoms(PyObject
*self
, PyObject
*args
) {
941 if(!PyArg_ParseTuple(args
,(char *)":Property_atoms")) goto fail
;
943 otk::Atoms
const &_result_ref
= Property_atoms();
944 result
= (otk::Atoms
*) &_result_ref
;
947 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Atoms
, 0);
954 static PyObject
*_wrap_new_Display(PyObject
*self
, PyObject
*args
) {
956 otk::Display
*result
;
958 if(!PyArg_ParseTuple(args
,(char *)":new_Display")) goto fail
;
959 result
= (otk::Display
*)new otk::Display();
961 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Display
, 1);
968 static PyObject
*_wrap_delete_Display(PyObject
*self
, PyObject
*args
) {
970 otk::Display
*arg1
= (otk::Display
*) 0 ;
971 PyObject
* obj0
= 0 ;
973 if(!PyArg_ParseTuple(args
,(char *)"O:delete_Display",&obj0
)) goto fail
;
974 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Display
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
977 Py_INCREF(Py_None
); resultobj
= Py_None
;
984 static PyObject
*_wrap_Display_screenInfo(PyObject
*self
, PyObject
*args
) {
986 otk::Display
*arg1
= (otk::Display
*) 0 ;
988 otk::ScreenInfo
*result
;
989 PyObject
* obj0
= 0 ;
991 if(!PyArg_ParseTuple(args
,(char *)"Oi:Display_screenInfo",&obj0
,&arg2
)) goto fail
;
992 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Display
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
993 result
= (otk::ScreenInfo
*)((otk::Display
const *)arg1
)->screenInfo(arg2
);
995 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__ScreenInfo
, 0);
1002 static PyObject
*_wrap_Display_findScreen(PyObject
*self
, PyObject
*args
) {
1003 PyObject
*resultobj
;
1004 otk::Display
*arg1
= (otk::Display
*) 0 ;
1006 otk::ScreenInfo
*result
;
1007 PyObject
* obj0
= 0 ;
1008 PyObject
* obj1
= 0 ;
1010 if(!PyArg_ParseTuple(args
,(char *)"OO:Display_findScreen",&obj0
,&obj1
)) goto fail
;
1011 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Display
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1012 arg2
= (Window
) PyInt_AsLong(obj1
);
1013 if (PyErr_Occurred()) SWIG_fail
;
1014 result
= (otk::ScreenInfo
*)((otk::Display
const *)arg1
)->findScreen(arg2
);
1016 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__ScreenInfo
, 0);
1023 static PyObject
*_wrap_Display_renderControl(PyObject
*self
, PyObject
*args
) {
1024 PyObject
*resultobj
;
1025 otk::Display
*arg1
= (otk::Display
*) 0 ;
1027 otk::RenderControl
*result
;
1028 PyObject
* obj0
= 0 ;
1030 if(!PyArg_ParseTuple(args
,(char *)"Oi:Display_renderControl",&obj0
,&arg2
)) goto fail
;
1031 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Display
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1032 result
= (otk::RenderControl
*)((otk::Display
const *)arg1
)->renderControl(arg2
);
1034 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__RenderControl
, 0);
1041 static PyObject
*_wrap_Display_xkb(PyObject
*self
, PyObject
*args
) {
1042 PyObject
*resultobj
;
1043 otk::Display
*arg1
= (otk::Display
*) 0 ;
1045 PyObject
* obj0
= 0 ;
1047 if(!PyArg_ParseTuple(args
,(char *)"O:Display_xkb",&obj0
)) goto fail
;
1048 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Display
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1049 result
= (bool)((otk::Display
const *)arg1
)->xkb();
1051 resultobj
= PyInt_FromLong((long)result
);
1058 static PyObject
*_wrap_Display_xkbEventBase(PyObject
*self
, PyObject
*args
) {
1059 PyObject
*resultobj
;
1060 otk::Display
*arg1
= (otk::Display
*) 0 ;
1062 PyObject
* obj0
= 0 ;
1064 if(!PyArg_ParseTuple(args
,(char *)"O:Display_xkbEventBase",&obj0
)) goto fail
;
1065 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Display
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1066 result
= (int)((otk::Display
const *)arg1
)->xkbEventBase();
1068 resultobj
= PyInt_FromLong((long)result
);
1075 static PyObject
*_wrap_Display_shape(PyObject
*self
, PyObject
*args
) {
1076 PyObject
*resultobj
;
1077 otk::Display
*arg1
= (otk::Display
*) 0 ;
1079 PyObject
* obj0
= 0 ;
1081 if(!PyArg_ParseTuple(args
,(char *)"O:Display_shape",&obj0
)) goto fail
;
1082 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Display
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1083 result
= (bool)((otk::Display
const *)arg1
)->shape();
1085 resultobj
= PyInt_FromLong((long)result
);
1092 static PyObject
*_wrap_Display_shapeEventBase(PyObject
*self
, PyObject
*args
) {
1093 PyObject
*resultobj
;
1094 otk::Display
*arg1
= (otk::Display
*) 0 ;
1096 PyObject
* obj0
= 0 ;
1098 if(!PyArg_ParseTuple(args
,(char *)"O:Display_shapeEventBase",&obj0
)) goto fail
;
1099 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Display
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1100 result
= (int)((otk::Display
const *)arg1
)->shapeEventBase();
1102 resultobj
= PyInt_FromLong((long)result
);
1109 static PyObject
*_wrap_Display_xinerama(PyObject
*self
, PyObject
*args
) {
1110 PyObject
*resultobj
;
1111 otk::Display
*arg1
= (otk::Display
*) 0 ;
1113 PyObject
* obj0
= 0 ;
1115 if(!PyArg_ParseTuple(args
,(char *)"O:Display_xinerama",&obj0
)) goto fail
;
1116 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Display
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1117 result
= (bool)((otk::Display
const *)arg1
)->xinerama();
1119 resultobj
= PyInt_FromLong((long)result
);
1126 static PyObject
*_wrap_Display_numLockMask(PyObject
*self
, PyObject
*args
) {
1127 PyObject
*resultobj
;
1128 otk::Display
*arg1
= (otk::Display
*) 0 ;
1129 unsigned int result
;
1130 PyObject
* obj0
= 0 ;
1132 if(!PyArg_ParseTuple(args
,(char *)"O:Display_numLockMask",&obj0
)) goto fail
;
1133 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Display
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1134 result
= (unsigned int)((otk::Display
const *)arg1
)->numLockMask();
1136 resultobj
= PyInt_FromLong((long)result
);
1143 static PyObject
*_wrap_Display_scrollLockMask(PyObject
*self
, PyObject
*args
) {
1144 PyObject
*resultobj
;
1145 otk::Display
*arg1
= (otk::Display
*) 0 ;
1146 unsigned int result
;
1147 PyObject
* obj0
= 0 ;
1149 if(!PyArg_ParseTuple(args
,(char *)"O:Display_scrollLockMask",&obj0
)) goto fail
;
1150 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Display
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1151 result
= (unsigned int)((otk::Display
const *)arg1
)->scrollLockMask();
1153 resultobj
= PyInt_FromLong((long)result
);
1160 static PyObject
*_wrap_Display_modifierMap(PyObject
*self
, PyObject
*args
) {
1161 PyObject
*resultobj
;
1162 otk::Display
*arg1
= (otk::Display
*) 0 ;
1163 XModifierKeymap
*result
;
1164 PyObject
* obj0
= 0 ;
1166 if(!PyArg_ParseTuple(args
,(char *)"O:Display_modifierMap",&obj0
)) goto fail
;
1167 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Display
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1168 result
= (XModifierKeymap
*)((otk::Display
const *)arg1
)->modifierMap();
1170 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_XModifierKeymap
, 0);
1177 static PyObject
*_wrap_Display___mul__(PyObject
*self
, PyObject
*args
) {
1178 PyObject
*resultobj
;
1179 otk::Display
*arg1
= (otk::Display
*) 0 ;
1181 PyObject
* obj0
= 0 ;
1183 if(!PyArg_ParseTuple(args
,(char *)"O:Display___mul__",&obj0
)) goto fail
;
1184 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Display
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1185 result
= (Display
*)((otk::Display
const *)arg1
)->operator *();
1187 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_Display
, 0);
1194 static PyObject
*_wrap_Display_grab(PyObject
*self
, PyObject
*args
) {
1195 PyObject
*resultobj
;
1196 otk::Display
*arg1
= (otk::Display
*) 0 ;
1197 PyObject
* obj0
= 0 ;
1199 if(!PyArg_ParseTuple(args
,(char *)"O:Display_grab",&obj0
)) goto fail
;
1200 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Display
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1203 Py_INCREF(Py_None
); resultobj
= Py_None
;
1210 static PyObject
*_wrap_Display_ungrab(PyObject
*self
, PyObject
*args
) {
1211 PyObject
*resultobj
;
1212 otk::Display
*arg1
= (otk::Display
*) 0 ;
1213 PyObject
* obj0
= 0 ;
1215 if(!PyArg_ParseTuple(args
,(char *)"O:Display_ungrab",&obj0
)) goto fail
;
1216 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Display
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1219 Py_INCREF(Py_None
); resultobj
= Py_None
;
1226 static PyObject
*_wrap_Display_grabButton(PyObject
*self
, PyObject
*args
) {
1227 PyObject
*resultobj
;
1228 otk::Display
*arg1
= (otk::Display
*) 0 ;
1239 PyObject
* obj0
= 0 ;
1240 PyObject
* obj1
= 0 ;
1241 PyObject
* obj2
= 0 ;
1242 PyObject
* obj3
= 0 ;
1243 PyObject
* obj4
= 0 ;
1244 PyObject
* obj5
= 0 ;
1245 PyObject
* obj8
= 0 ;
1246 PyObject
* obj9
= 0 ;
1247 PyObject
* obj10
= 0 ;
1249 if(!PyArg_ParseTuple(args
,(char *)"OOOOOOiiOOO:Display_grabButton",&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&arg7
,&arg8
,&obj8
,&obj9
,&obj10
)) goto fail
;
1250 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Display
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1251 arg2
= (unsigned int) PyInt_AsLong(obj1
);
1252 if (PyErr_Occurred()) SWIG_fail
;
1253 arg3
= (unsigned int) PyInt_AsLong(obj2
);
1254 if (PyErr_Occurred()) SWIG_fail
;
1255 arg4
= (Window
) PyInt_AsLong(obj3
);
1256 if (PyErr_Occurred()) SWIG_fail
;
1257 arg5
= (bool) PyInt_AsLong(obj4
);
1258 if (PyErr_Occurred()) SWIG_fail
;
1259 arg6
= (unsigned int) PyInt_AsLong(obj5
);
1260 if (PyErr_Occurred()) SWIG_fail
;
1261 arg9
= (Window
) PyInt_AsLong(obj8
);
1262 if (PyErr_Occurred()) SWIG_fail
;
1263 arg10
= (Cursor
) PyInt_AsLong(obj9
);
1264 if (PyErr_Occurred()) SWIG_fail
;
1265 arg11
= (bool) PyInt_AsLong(obj10
);
1266 if (PyErr_Occurred()) SWIG_fail
;
1267 ((otk::Display
const *)arg1
)->grabButton(arg2
,arg3
,arg4
,arg5
,arg6
,arg7
,arg8
,arg9
,arg10
,arg11
);
1269 Py_INCREF(Py_None
); resultobj
= Py_None
;
1276 static PyObject
*_wrap_Display_ungrabButton(PyObject
*self
, PyObject
*args
) {
1277 PyObject
*resultobj
;
1278 otk::Display
*arg1
= (otk::Display
*) 0 ;
1282 PyObject
* obj0
= 0 ;
1283 PyObject
* obj1
= 0 ;
1284 PyObject
* obj2
= 0 ;
1285 PyObject
* obj3
= 0 ;
1287 if(!PyArg_ParseTuple(args
,(char *)"OOOO:Display_ungrabButton",&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
1288 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Display
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1289 arg2
= (unsigned int) PyInt_AsLong(obj1
);
1290 if (PyErr_Occurred()) SWIG_fail
;
1291 arg3
= (unsigned int) PyInt_AsLong(obj2
);
1292 if (PyErr_Occurred()) SWIG_fail
;
1293 arg4
= (Window
) PyInt_AsLong(obj3
);
1294 if (PyErr_Occurred()) SWIG_fail
;
1295 ((otk::Display
const *)arg1
)->ungrabButton(arg2
,arg3
,arg4
);
1297 Py_INCREF(Py_None
); resultobj
= Py_None
;
1304 static PyObject
*_wrap_Display_grabKey(PyObject
*self
, PyObject
*args
) {
1305 PyObject
*resultobj
;
1306 otk::Display
*arg1
= (otk::Display
*) 0 ;
1314 PyObject
* obj0
= 0 ;
1315 PyObject
* obj1
= 0 ;
1316 PyObject
* obj2
= 0 ;
1317 PyObject
* obj3
= 0 ;
1318 PyObject
* obj4
= 0 ;
1319 PyObject
* obj7
= 0 ;
1321 if(!PyArg_ParseTuple(args
,(char *)"OOOOOiiO:Display_grabKey",&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&arg6
,&arg7
,&obj7
)) goto fail
;
1322 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Display
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1323 arg2
= (unsigned int) PyInt_AsLong(obj1
);
1324 if (PyErr_Occurred()) SWIG_fail
;
1325 arg3
= (unsigned int) PyInt_AsLong(obj2
);
1326 if (PyErr_Occurred()) SWIG_fail
;
1327 arg4
= (Window
) PyInt_AsLong(obj3
);
1328 if (PyErr_Occurred()) SWIG_fail
;
1329 arg5
= (bool) PyInt_AsLong(obj4
);
1330 if (PyErr_Occurred()) SWIG_fail
;
1331 arg8
= (bool) PyInt_AsLong(obj7
);
1332 if (PyErr_Occurred()) SWIG_fail
;
1333 ((otk::Display
const *)arg1
)->grabKey(arg2
,arg3
,arg4
,arg5
,arg6
,arg7
,arg8
);
1335 Py_INCREF(Py_None
); resultobj
= Py_None
;
1342 static PyObject
*_wrap_Display_ungrabKey(PyObject
*self
, PyObject
*args
) {
1343 PyObject
*resultobj
;
1344 otk::Display
*arg1
= (otk::Display
*) 0 ;
1348 PyObject
* obj0
= 0 ;
1349 PyObject
* obj1
= 0 ;
1350 PyObject
* obj2
= 0 ;
1351 PyObject
* obj3
= 0 ;
1353 if(!PyArg_ParseTuple(args
,(char *)"OOOO:Display_ungrabKey",&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
1354 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Display
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1355 arg2
= (unsigned int) PyInt_AsLong(obj1
);
1356 if (PyErr_Occurred()) SWIG_fail
;
1357 arg3
= (unsigned int) PyInt_AsLong(obj2
);
1358 if (PyErr_Occurred()) SWIG_fail
;
1359 arg4
= (Window
) PyInt_AsLong(obj3
);
1360 if (PyErr_Occurred()) SWIG_fail
;
1361 ((otk::Display
const *)arg1
)->ungrabKey(arg2
,arg3
,arg4
);
1363 Py_INCREF(Py_None
); resultobj
= Py_None
;
1370 static PyObject
* Display_swigregister(PyObject
*self
, PyObject
*args
) {
1372 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
1373 SWIG_TypeClientData(SWIGTYPE_p_otk__Display
, obj
);
1375 return Py_BuildValue((char *)"");
1377 static PyObject
*_wrap_new_Point__SWIG_0(PyObject
*self
, PyObject
*args
) {
1378 PyObject
*resultobj
;
1381 if(!PyArg_ParseTuple(args
,(char *)":new_Point")) goto fail
;
1382 result
= (otk::Point
*)new otk::Point();
1384 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Point
, 1);
1391 static PyObject
*_wrap_new_Point__SWIG_1(PyObject
*self
, PyObject
*args
) {
1392 PyObject
*resultobj
;
1397 if(!PyArg_ParseTuple(args
,(char *)"ii:new_Point",&arg1
,&arg2
)) goto fail
;
1398 result
= (otk::Point
*)new otk::Point(arg1
,arg2
);
1400 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Point
, 1);
1407 static PyObject
*_wrap_new_Point(PyObject
*self
, PyObject
*args
) {
1412 argc
= PyObject_Length(args
);
1413 for (ii
= 0; (ii
< argc
) && (ii
< 2); ii
++) {
1414 argv
[ii
] = PyTuple_GetItem(args
,ii
);
1417 return _wrap_new_Point__SWIG_0(self
,args
);
1422 _v
= (PyInt_Check(argv
[0]) || PyLong_Check(argv
[0])) ? 1 : 0;
1426 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
1429 return _wrap_new_Point__SWIG_1(self
,args
);
1434 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'new_Point'");
1439 static PyObject
*_wrap_Point_setX(PyObject
*self
, PyObject
*args
) {
1440 PyObject
*resultobj
;
1441 otk::Point
*arg1
= (otk::Point
*) 0 ;
1443 PyObject
* obj0
= 0 ;
1445 if(!PyArg_ParseTuple(args
,(char *)"Oi:Point_setX",&obj0
,&arg2
)) goto fail
;
1446 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1449 Py_INCREF(Py_None
); resultobj
= Py_None
;
1456 static PyObject
*_wrap_Point_x(PyObject
*self
, PyObject
*args
) {
1457 PyObject
*resultobj
;
1458 otk::Point
*arg1
= (otk::Point
*) 0 ;
1460 PyObject
* obj0
= 0 ;
1462 if(!PyArg_ParseTuple(args
,(char *)"O:Point_x",&obj0
)) goto fail
;
1463 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1464 result
= (int)((otk::Point
const *)arg1
)->x();
1466 resultobj
= PyInt_FromLong((long)result
);
1473 static PyObject
*_wrap_Point_setY(PyObject
*self
, PyObject
*args
) {
1474 PyObject
*resultobj
;
1475 otk::Point
*arg1
= (otk::Point
*) 0 ;
1477 PyObject
* obj0
= 0 ;
1479 if(!PyArg_ParseTuple(args
,(char *)"Oi:Point_setY",&obj0
,&arg2
)) goto fail
;
1480 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1483 Py_INCREF(Py_None
); resultobj
= Py_None
;
1490 static PyObject
*_wrap_Point_y(PyObject
*self
, PyObject
*args
) {
1491 PyObject
*resultobj
;
1492 otk::Point
*arg1
= (otk::Point
*) 0 ;
1494 PyObject
* obj0
= 0 ;
1496 if(!PyArg_ParseTuple(args
,(char *)"O:Point_y",&obj0
)) goto fail
;
1497 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1498 result
= (int)((otk::Point
const *)arg1
)->y();
1500 resultobj
= PyInt_FromLong((long)result
);
1507 static PyObject
*_wrap_Point_setPoint(PyObject
*self
, PyObject
*args
) {
1508 PyObject
*resultobj
;
1509 otk::Point
*arg1
= (otk::Point
*) 0 ;
1512 PyObject
* obj0
= 0 ;
1514 if(!PyArg_ParseTuple(args
,(char *)"Oii:Point_setPoint",&obj0
,&arg2
,&arg3
)) goto fail
;
1515 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1516 (arg1
)->setPoint(arg2
,arg3
);
1518 Py_INCREF(Py_None
); resultobj
= Py_None
;
1525 static PyObject
* Point_swigregister(PyObject
*self
, PyObject
*args
) {
1527 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
1528 SWIG_TypeClientData(SWIGTYPE_p_otk__Point
, obj
);
1530 return Py_BuildValue((char *)"");
1532 static PyObject
*_wrap_Atoms_cardinal_set(PyObject
*self
, PyObject
*args
) {
1533 PyObject
*resultobj
;
1534 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
1536 PyObject
* obj0
= 0 ;
1537 PyObject
* obj1
= 0 ;
1539 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_cardinal_set",&obj0
,&obj1
)) goto fail
;
1540 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1541 arg2
= (Atom
) PyInt_AsLong(obj1
);
1542 if (PyErr_Occurred()) SWIG_fail
;
1543 if (arg1
) (arg1
)->cardinal
= arg2
;
1545 Py_INCREF(Py_None
); resultobj
= Py_None
;
1552 static PyObject
*_wrap_Atoms_cardinal_get(PyObject
*self
, PyObject
*args
) {
1553 PyObject
*resultobj
;
1554 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
1556 PyObject
* obj0
= 0 ;
1558 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_cardinal_get",&obj0
)) goto fail
;
1559 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1560 result
= (Atom
) ((arg1
)->cardinal
);
1562 resultobj
= PyInt_FromLong((long)result
);
1569 static PyObject
*_wrap_Atoms_window_set(PyObject
*self
, PyObject
*args
) {
1570 PyObject
*resultobj
;
1571 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
1573 PyObject
* obj0
= 0 ;
1574 PyObject
* obj1
= 0 ;
1576 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_window_set",&obj0
,&obj1
)) goto fail
;
1577 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1578 arg2
= (Atom
) PyInt_AsLong(obj1
);
1579 if (PyErr_Occurred()) SWIG_fail
;
1580 if (arg1
) (arg1
)->window
= arg2
;
1582 Py_INCREF(Py_None
); resultobj
= Py_None
;
1589 static PyObject
*_wrap_Atoms_window_get(PyObject
*self
, PyObject
*args
) {
1590 PyObject
*resultobj
;
1591 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
1593 PyObject
* obj0
= 0 ;
1595 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_window_get",&obj0
)) goto fail
;
1596 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1597 result
= (Atom
) ((arg1
)->window
);
1599 resultobj
= PyInt_FromLong((long)result
);
1606 static PyObject
*_wrap_Atoms_pixmap_set(PyObject
*self
, PyObject
*args
) {
1607 PyObject
*resultobj
;
1608 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
1610 PyObject
* obj0
= 0 ;
1611 PyObject
* obj1
= 0 ;
1613 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_pixmap_set",&obj0
,&obj1
)) goto fail
;
1614 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1615 arg2
= (Atom
) PyInt_AsLong(obj1
);
1616 if (PyErr_Occurred()) SWIG_fail
;
1617 if (arg1
) (arg1
)->pixmap
= arg2
;
1619 Py_INCREF(Py_None
); resultobj
= Py_None
;
1626 static PyObject
*_wrap_Atoms_pixmap_get(PyObject
*self
, PyObject
*args
) {
1627 PyObject
*resultobj
;
1628 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
1630 PyObject
* obj0
= 0 ;
1632 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_pixmap_get",&obj0
)) goto fail
;
1633 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1634 result
= (Atom
) ((arg1
)->pixmap
);
1636 resultobj
= PyInt_FromLong((long)result
);
1643 static PyObject
*_wrap_Atoms_atom_set(PyObject
*self
, PyObject
*args
) {
1644 PyObject
*resultobj
;
1645 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
1647 PyObject
* obj0
= 0 ;
1648 PyObject
* obj1
= 0 ;
1650 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_atom_set",&obj0
,&obj1
)) goto fail
;
1651 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1652 arg2
= (Atom
) PyInt_AsLong(obj1
);
1653 if (PyErr_Occurred()) SWIG_fail
;
1654 if (arg1
) (arg1
)->atom
= arg2
;
1656 Py_INCREF(Py_None
); resultobj
= Py_None
;
1663 static PyObject
*_wrap_Atoms_atom_get(PyObject
*self
, PyObject
*args
) {
1664 PyObject
*resultobj
;
1665 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
1667 PyObject
* obj0
= 0 ;
1669 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_atom_get",&obj0
)) goto fail
;
1670 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1671 result
= (Atom
) ((arg1
)->atom
);
1673 resultobj
= PyInt_FromLong((long)result
);
1680 static PyObject
*_wrap_Atoms_string_set(PyObject
*self
, PyObject
*args
) {
1681 PyObject
*resultobj
;
1682 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
1684 PyObject
* obj0
= 0 ;
1685 PyObject
* obj1
= 0 ;
1687 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_string_set",&obj0
,&obj1
)) goto fail
;
1688 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1689 arg2
= (Atom
) PyInt_AsLong(obj1
);
1690 if (PyErr_Occurred()) SWIG_fail
;
1691 if (arg1
) (arg1
)->string
= arg2
;
1693 Py_INCREF(Py_None
); resultobj
= Py_None
;
1700 static PyObject
*_wrap_Atoms_string_get(PyObject
*self
, PyObject
*args
) {
1701 PyObject
*resultobj
;
1702 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
1704 PyObject
* obj0
= 0 ;
1706 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_string_get",&obj0
)) goto fail
;
1707 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1708 result
= (Atom
) ((arg1
)->string
);
1710 resultobj
= PyInt_FromLong((long)result
);
1717 static PyObject
*_wrap_Atoms_utf8_set(PyObject
*self
, PyObject
*args
) {
1718 PyObject
*resultobj
;
1719 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
1721 PyObject
* obj0
= 0 ;
1722 PyObject
* obj1
= 0 ;
1724 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_utf8_set",&obj0
,&obj1
)) goto fail
;
1725 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1726 arg2
= (Atom
) PyInt_AsLong(obj1
);
1727 if (PyErr_Occurred()) SWIG_fail
;
1728 if (arg1
) (arg1
)->utf8
= arg2
;
1730 Py_INCREF(Py_None
); resultobj
= Py_None
;
1737 static PyObject
*_wrap_Atoms_utf8_get(PyObject
*self
, PyObject
*args
) {
1738 PyObject
*resultobj
;
1739 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
1741 PyObject
* obj0
= 0 ;
1743 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_utf8_get",&obj0
)) goto fail
;
1744 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1745 result
= (Atom
) ((arg1
)->utf8
);
1747 resultobj
= PyInt_FromLong((long)result
);
1754 static PyObject
*_wrap_Atoms_openbox_pid_set(PyObject
*self
, PyObject
*args
) {
1755 PyObject
*resultobj
;
1756 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
1758 PyObject
* obj0
= 0 ;
1759 PyObject
* obj1
= 0 ;
1761 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_openbox_pid_set",&obj0
,&obj1
)) goto fail
;
1762 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1763 arg2
= (Atom
) PyInt_AsLong(obj1
);
1764 if (PyErr_Occurred()) SWIG_fail
;
1765 if (arg1
) (arg1
)->openbox_pid
= arg2
;
1767 Py_INCREF(Py_None
); resultobj
= Py_None
;
1774 static PyObject
*_wrap_Atoms_openbox_pid_get(PyObject
*self
, PyObject
*args
) {
1775 PyObject
*resultobj
;
1776 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
1778 PyObject
* obj0
= 0 ;
1780 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_openbox_pid_get",&obj0
)) goto fail
;
1781 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1782 result
= (Atom
) ((arg1
)->openbox_pid
);
1784 resultobj
= PyInt_FromLong((long)result
);
1791 static PyObject
*_wrap_Atoms_wm_colormap_windows_set(PyObject
*self
, PyObject
*args
) {
1792 PyObject
*resultobj
;
1793 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
1795 PyObject
* obj0
= 0 ;
1796 PyObject
* obj1
= 0 ;
1798 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_wm_colormap_windows_set",&obj0
,&obj1
)) goto fail
;
1799 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1800 arg2
= (Atom
) PyInt_AsLong(obj1
);
1801 if (PyErr_Occurred()) SWIG_fail
;
1802 if (arg1
) (arg1
)->wm_colormap_windows
= arg2
;
1804 Py_INCREF(Py_None
); resultobj
= Py_None
;
1811 static PyObject
*_wrap_Atoms_wm_colormap_windows_get(PyObject
*self
, PyObject
*args
) {
1812 PyObject
*resultobj
;
1813 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
1815 PyObject
* obj0
= 0 ;
1817 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_wm_colormap_windows_get",&obj0
)) goto fail
;
1818 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1819 result
= (Atom
) ((arg1
)->wm_colormap_windows
);
1821 resultobj
= PyInt_FromLong((long)result
);
1828 static PyObject
*_wrap_Atoms_wm_protocols_set(PyObject
*self
, PyObject
*args
) {
1829 PyObject
*resultobj
;
1830 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
1832 PyObject
* obj0
= 0 ;
1833 PyObject
* obj1
= 0 ;
1835 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_wm_protocols_set",&obj0
,&obj1
)) goto fail
;
1836 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1837 arg2
= (Atom
) PyInt_AsLong(obj1
);
1838 if (PyErr_Occurred()) SWIG_fail
;
1839 if (arg1
) (arg1
)->wm_protocols
= arg2
;
1841 Py_INCREF(Py_None
); resultobj
= Py_None
;
1848 static PyObject
*_wrap_Atoms_wm_protocols_get(PyObject
*self
, PyObject
*args
) {
1849 PyObject
*resultobj
;
1850 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
1852 PyObject
* obj0
= 0 ;
1854 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_wm_protocols_get",&obj0
)) goto fail
;
1855 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1856 result
= (Atom
) ((arg1
)->wm_protocols
);
1858 resultobj
= PyInt_FromLong((long)result
);
1865 static PyObject
*_wrap_Atoms_wm_state_set(PyObject
*self
, PyObject
*args
) {
1866 PyObject
*resultobj
;
1867 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
1869 PyObject
* obj0
= 0 ;
1870 PyObject
* obj1
= 0 ;
1872 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_wm_state_set",&obj0
,&obj1
)) goto fail
;
1873 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1874 arg2
= (Atom
) PyInt_AsLong(obj1
);
1875 if (PyErr_Occurred()) SWIG_fail
;
1876 if (arg1
) (arg1
)->wm_state
= arg2
;
1878 Py_INCREF(Py_None
); resultobj
= Py_None
;
1885 static PyObject
*_wrap_Atoms_wm_state_get(PyObject
*self
, PyObject
*args
) {
1886 PyObject
*resultobj
;
1887 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
1889 PyObject
* obj0
= 0 ;
1891 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_wm_state_get",&obj0
)) goto fail
;
1892 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1893 result
= (Atom
) ((arg1
)->wm_state
);
1895 resultobj
= PyInt_FromLong((long)result
);
1902 static PyObject
*_wrap_Atoms_wm_delete_window_set(PyObject
*self
, PyObject
*args
) {
1903 PyObject
*resultobj
;
1904 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
1906 PyObject
* obj0
= 0 ;
1907 PyObject
* obj1
= 0 ;
1909 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_wm_delete_window_set",&obj0
,&obj1
)) goto fail
;
1910 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1911 arg2
= (Atom
) PyInt_AsLong(obj1
);
1912 if (PyErr_Occurred()) SWIG_fail
;
1913 if (arg1
) (arg1
)->wm_delete_window
= arg2
;
1915 Py_INCREF(Py_None
); resultobj
= Py_None
;
1922 static PyObject
*_wrap_Atoms_wm_delete_window_get(PyObject
*self
, PyObject
*args
) {
1923 PyObject
*resultobj
;
1924 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
1926 PyObject
* obj0
= 0 ;
1928 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_wm_delete_window_get",&obj0
)) goto fail
;
1929 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1930 result
= (Atom
) ((arg1
)->wm_delete_window
);
1932 resultobj
= PyInt_FromLong((long)result
);
1939 static PyObject
*_wrap_Atoms_wm_take_focus_set(PyObject
*self
, PyObject
*args
) {
1940 PyObject
*resultobj
;
1941 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
1943 PyObject
* obj0
= 0 ;
1944 PyObject
* obj1
= 0 ;
1946 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_wm_take_focus_set",&obj0
,&obj1
)) goto fail
;
1947 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1948 arg2
= (Atom
) PyInt_AsLong(obj1
);
1949 if (PyErr_Occurred()) SWIG_fail
;
1950 if (arg1
) (arg1
)->wm_take_focus
= arg2
;
1952 Py_INCREF(Py_None
); resultobj
= Py_None
;
1959 static PyObject
*_wrap_Atoms_wm_take_focus_get(PyObject
*self
, PyObject
*args
) {
1960 PyObject
*resultobj
;
1961 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
1963 PyObject
* obj0
= 0 ;
1965 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_wm_take_focus_get",&obj0
)) goto fail
;
1966 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1967 result
= (Atom
) ((arg1
)->wm_take_focus
);
1969 resultobj
= PyInt_FromLong((long)result
);
1976 static PyObject
*_wrap_Atoms_wm_change_state_set(PyObject
*self
, PyObject
*args
) {
1977 PyObject
*resultobj
;
1978 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
1980 PyObject
* obj0
= 0 ;
1981 PyObject
* obj1
= 0 ;
1983 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_wm_change_state_set",&obj0
,&obj1
)) goto fail
;
1984 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
1985 arg2
= (Atom
) PyInt_AsLong(obj1
);
1986 if (PyErr_Occurred()) SWIG_fail
;
1987 if (arg1
) (arg1
)->wm_change_state
= arg2
;
1989 Py_INCREF(Py_None
); resultobj
= Py_None
;
1996 static PyObject
*_wrap_Atoms_wm_change_state_get(PyObject
*self
, PyObject
*args
) {
1997 PyObject
*resultobj
;
1998 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2000 PyObject
* obj0
= 0 ;
2002 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_wm_change_state_get",&obj0
)) goto fail
;
2003 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2004 result
= (Atom
) ((arg1
)->wm_change_state
);
2006 resultobj
= PyInt_FromLong((long)result
);
2013 static PyObject
*_wrap_Atoms_wm_name_set(PyObject
*self
, PyObject
*args
) {
2014 PyObject
*resultobj
;
2015 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2017 PyObject
* obj0
= 0 ;
2018 PyObject
* obj1
= 0 ;
2020 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_wm_name_set",&obj0
,&obj1
)) goto fail
;
2021 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2022 arg2
= (Atom
) PyInt_AsLong(obj1
);
2023 if (PyErr_Occurred()) SWIG_fail
;
2024 if (arg1
) (arg1
)->wm_name
= arg2
;
2026 Py_INCREF(Py_None
); resultobj
= Py_None
;
2033 static PyObject
*_wrap_Atoms_wm_name_get(PyObject
*self
, PyObject
*args
) {
2034 PyObject
*resultobj
;
2035 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2037 PyObject
* obj0
= 0 ;
2039 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_wm_name_get",&obj0
)) goto fail
;
2040 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2041 result
= (Atom
) ((arg1
)->wm_name
);
2043 resultobj
= PyInt_FromLong((long)result
);
2050 static PyObject
*_wrap_Atoms_wm_icon_name_set(PyObject
*self
, PyObject
*args
) {
2051 PyObject
*resultobj
;
2052 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2054 PyObject
* obj0
= 0 ;
2055 PyObject
* obj1
= 0 ;
2057 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_wm_icon_name_set",&obj0
,&obj1
)) goto fail
;
2058 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2059 arg2
= (Atom
) PyInt_AsLong(obj1
);
2060 if (PyErr_Occurred()) SWIG_fail
;
2061 if (arg1
) (arg1
)->wm_icon_name
= arg2
;
2063 Py_INCREF(Py_None
); resultobj
= Py_None
;
2070 static PyObject
*_wrap_Atoms_wm_icon_name_get(PyObject
*self
, PyObject
*args
) {
2071 PyObject
*resultobj
;
2072 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2074 PyObject
* obj0
= 0 ;
2076 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_wm_icon_name_get",&obj0
)) goto fail
;
2077 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2078 result
= (Atom
) ((arg1
)->wm_icon_name
);
2080 resultobj
= PyInt_FromLong((long)result
);
2087 static PyObject
*_wrap_Atoms_wm_class_set(PyObject
*self
, PyObject
*args
) {
2088 PyObject
*resultobj
;
2089 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2091 PyObject
* obj0
= 0 ;
2092 PyObject
* obj1
= 0 ;
2094 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_wm_class_set",&obj0
,&obj1
)) goto fail
;
2095 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2096 arg2
= (Atom
) PyInt_AsLong(obj1
);
2097 if (PyErr_Occurred()) SWIG_fail
;
2098 if (arg1
) (arg1
)->wm_class
= arg2
;
2100 Py_INCREF(Py_None
); resultobj
= Py_None
;
2107 static PyObject
*_wrap_Atoms_wm_class_get(PyObject
*self
, PyObject
*args
) {
2108 PyObject
*resultobj
;
2109 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2111 PyObject
* obj0
= 0 ;
2113 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_wm_class_get",&obj0
)) goto fail
;
2114 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2115 result
= (Atom
) ((arg1
)->wm_class
);
2117 resultobj
= PyInt_FromLong((long)result
);
2124 static PyObject
*_wrap_Atoms_wm_window_role_set(PyObject
*self
, PyObject
*args
) {
2125 PyObject
*resultobj
;
2126 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2128 PyObject
* obj0
= 0 ;
2129 PyObject
* obj1
= 0 ;
2131 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_wm_window_role_set",&obj0
,&obj1
)) goto fail
;
2132 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2133 arg2
= (Atom
) PyInt_AsLong(obj1
);
2134 if (PyErr_Occurred()) SWIG_fail
;
2135 if (arg1
) (arg1
)->wm_window_role
= arg2
;
2137 Py_INCREF(Py_None
); resultobj
= Py_None
;
2144 static PyObject
*_wrap_Atoms_wm_window_role_get(PyObject
*self
, PyObject
*args
) {
2145 PyObject
*resultobj
;
2146 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2148 PyObject
* obj0
= 0 ;
2150 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_wm_window_role_get",&obj0
)) goto fail
;
2151 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2152 result
= (Atom
) ((arg1
)->wm_window_role
);
2154 resultobj
= PyInt_FromLong((long)result
);
2161 static PyObject
*_wrap_Atoms_motif_wm_hints_set(PyObject
*self
, PyObject
*args
) {
2162 PyObject
*resultobj
;
2163 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2165 PyObject
* obj0
= 0 ;
2166 PyObject
* obj1
= 0 ;
2168 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_motif_wm_hints_set",&obj0
,&obj1
)) goto fail
;
2169 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2170 arg2
= (Atom
) PyInt_AsLong(obj1
);
2171 if (PyErr_Occurred()) SWIG_fail
;
2172 if (arg1
) (arg1
)->motif_wm_hints
= arg2
;
2174 Py_INCREF(Py_None
); resultobj
= Py_None
;
2181 static PyObject
*_wrap_Atoms_motif_wm_hints_get(PyObject
*self
, PyObject
*args
) {
2182 PyObject
*resultobj
;
2183 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2185 PyObject
* obj0
= 0 ;
2187 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_motif_wm_hints_get",&obj0
)) goto fail
;
2188 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2189 result
= (Atom
) ((arg1
)->motif_wm_hints
);
2191 resultobj
= PyInt_FromLong((long)result
);
2198 static PyObject
*_wrap_Atoms_openbox_show_root_menu_set(PyObject
*self
, PyObject
*args
) {
2199 PyObject
*resultobj
;
2200 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2202 PyObject
* obj0
= 0 ;
2203 PyObject
* obj1
= 0 ;
2205 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_openbox_show_root_menu_set",&obj0
,&obj1
)) goto fail
;
2206 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2207 arg2
= (Atom
) PyInt_AsLong(obj1
);
2208 if (PyErr_Occurred()) SWIG_fail
;
2209 if (arg1
) (arg1
)->openbox_show_root_menu
= arg2
;
2211 Py_INCREF(Py_None
); resultobj
= Py_None
;
2218 static PyObject
*_wrap_Atoms_openbox_show_root_menu_get(PyObject
*self
, PyObject
*args
) {
2219 PyObject
*resultobj
;
2220 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2222 PyObject
* obj0
= 0 ;
2224 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_openbox_show_root_menu_get",&obj0
)) goto fail
;
2225 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2226 result
= (Atom
) ((arg1
)->openbox_show_root_menu
);
2228 resultobj
= PyInt_FromLong((long)result
);
2235 static PyObject
*_wrap_Atoms_openbox_show_workspace_menu_set(PyObject
*self
, PyObject
*args
) {
2236 PyObject
*resultobj
;
2237 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2239 PyObject
* obj0
= 0 ;
2240 PyObject
* obj1
= 0 ;
2242 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_openbox_show_workspace_menu_set",&obj0
,&obj1
)) goto fail
;
2243 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2244 arg2
= (Atom
) PyInt_AsLong(obj1
);
2245 if (PyErr_Occurred()) SWIG_fail
;
2246 if (arg1
) (arg1
)->openbox_show_workspace_menu
= arg2
;
2248 Py_INCREF(Py_None
); resultobj
= Py_None
;
2255 static PyObject
*_wrap_Atoms_openbox_show_workspace_menu_get(PyObject
*self
, PyObject
*args
) {
2256 PyObject
*resultobj
;
2257 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2259 PyObject
* obj0
= 0 ;
2261 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_openbox_show_workspace_menu_get",&obj0
)) goto fail
;
2262 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2263 result
= (Atom
) ((arg1
)->openbox_show_workspace_menu
);
2265 resultobj
= PyInt_FromLong((long)result
);
2272 static PyObject
*_wrap_Atoms_net_supported_set(PyObject
*self
, PyObject
*args
) {
2273 PyObject
*resultobj
;
2274 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2276 PyObject
* obj0
= 0 ;
2277 PyObject
* obj1
= 0 ;
2279 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_supported_set",&obj0
,&obj1
)) goto fail
;
2280 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2281 arg2
= (Atom
) PyInt_AsLong(obj1
);
2282 if (PyErr_Occurred()) SWIG_fail
;
2283 if (arg1
) (arg1
)->net_supported
= arg2
;
2285 Py_INCREF(Py_None
); resultobj
= Py_None
;
2292 static PyObject
*_wrap_Atoms_net_supported_get(PyObject
*self
, PyObject
*args
) {
2293 PyObject
*resultobj
;
2294 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2296 PyObject
* obj0
= 0 ;
2298 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_supported_get",&obj0
)) goto fail
;
2299 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2300 result
= (Atom
) ((arg1
)->net_supported
);
2302 resultobj
= PyInt_FromLong((long)result
);
2309 static PyObject
*_wrap_Atoms_net_client_list_set(PyObject
*self
, PyObject
*args
) {
2310 PyObject
*resultobj
;
2311 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2313 PyObject
* obj0
= 0 ;
2314 PyObject
* obj1
= 0 ;
2316 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_client_list_set",&obj0
,&obj1
)) goto fail
;
2317 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2318 arg2
= (Atom
) PyInt_AsLong(obj1
);
2319 if (PyErr_Occurred()) SWIG_fail
;
2320 if (arg1
) (arg1
)->net_client_list
= arg2
;
2322 Py_INCREF(Py_None
); resultobj
= Py_None
;
2329 static PyObject
*_wrap_Atoms_net_client_list_get(PyObject
*self
, PyObject
*args
) {
2330 PyObject
*resultobj
;
2331 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2333 PyObject
* obj0
= 0 ;
2335 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_client_list_get",&obj0
)) goto fail
;
2336 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2337 result
= (Atom
) ((arg1
)->net_client_list
);
2339 resultobj
= PyInt_FromLong((long)result
);
2346 static PyObject
*_wrap_Atoms_net_client_list_stacking_set(PyObject
*self
, PyObject
*args
) {
2347 PyObject
*resultobj
;
2348 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2350 PyObject
* obj0
= 0 ;
2351 PyObject
* obj1
= 0 ;
2353 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_client_list_stacking_set",&obj0
,&obj1
)) goto fail
;
2354 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2355 arg2
= (Atom
) PyInt_AsLong(obj1
);
2356 if (PyErr_Occurred()) SWIG_fail
;
2357 if (arg1
) (arg1
)->net_client_list_stacking
= arg2
;
2359 Py_INCREF(Py_None
); resultobj
= Py_None
;
2366 static PyObject
*_wrap_Atoms_net_client_list_stacking_get(PyObject
*self
, PyObject
*args
) {
2367 PyObject
*resultobj
;
2368 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2370 PyObject
* obj0
= 0 ;
2372 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_client_list_stacking_get",&obj0
)) goto fail
;
2373 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2374 result
= (Atom
) ((arg1
)->net_client_list_stacking
);
2376 resultobj
= PyInt_FromLong((long)result
);
2383 static PyObject
*_wrap_Atoms_net_number_of_desktops_set(PyObject
*self
, PyObject
*args
) {
2384 PyObject
*resultobj
;
2385 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2387 PyObject
* obj0
= 0 ;
2388 PyObject
* obj1
= 0 ;
2390 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_number_of_desktops_set",&obj0
,&obj1
)) goto fail
;
2391 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2392 arg2
= (Atom
) PyInt_AsLong(obj1
);
2393 if (PyErr_Occurred()) SWIG_fail
;
2394 if (arg1
) (arg1
)->net_number_of_desktops
= arg2
;
2396 Py_INCREF(Py_None
); resultobj
= Py_None
;
2403 static PyObject
*_wrap_Atoms_net_number_of_desktops_get(PyObject
*self
, PyObject
*args
) {
2404 PyObject
*resultobj
;
2405 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2407 PyObject
* obj0
= 0 ;
2409 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_number_of_desktops_get",&obj0
)) goto fail
;
2410 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2411 result
= (Atom
) ((arg1
)->net_number_of_desktops
);
2413 resultobj
= PyInt_FromLong((long)result
);
2420 static PyObject
*_wrap_Atoms_net_desktop_geometry_set(PyObject
*self
, PyObject
*args
) {
2421 PyObject
*resultobj
;
2422 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2424 PyObject
* obj0
= 0 ;
2425 PyObject
* obj1
= 0 ;
2427 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_desktop_geometry_set",&obj0
,&obj1
)) goto fail
;
2428 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2429 arg2
= (Atom
) PyInt_AsLong(obj1
);
2430 if (PyErr_Occurred()) SWIG_fail
;
2431 if (arg1
) (arg1
)->net_desktop_geometry
= arg2
;
2433 Py_INCREF(Py_None
); resultobj
= Py_None
;
2440 static PyObject
*_wrap_Atoms_net_desktop_geometry_get(PyObject
*self
, PyObject
*args
) {
2441 PyObject
*resultobj
;
2442 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2444 PyObject
* obj0
= 0 ;
2446 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_desktop_geometry_get",&obj0
)) goto fail
;
2447 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2448 result
= (Atom
) ((arg1
)->net_desktop_geometry
);
2450 resultobj
= PyInt_FromLong((long)result
);
2457 static PyObject
*_wrap_Atoms_net_desktop_viewport_set(PyObject
*self
, PyObject
*args
) {
2458 PyObject
*resultobj
;
2459 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2461 PyObject
* obj0
= 0 ;
2462 PyObject
* obj1
= 0 ;
2464 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_desktop_viewport_set",&obj0
,&obj1
)) goto fail
;
2465 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2466 arg2
= (Atom
) PyInt_AsLong(obj1
);
2467 if (PyErr_Occurred()) SWIG_fail
;
2468 if (arg1
) (arg1
)->net_desktop_viewport
= arg2
;
2470 Py_INCREF(Py_None
); resultobj
= Py_None
;
2477 static PyObject
*_wrap_Atoms_net_desktop_viewport_get(PyObject
*self
, PyObject
*args
) {
2478 PyObject
*resultobj
;
2479 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2481 PyObject
* obj0
= 0 ;
2483 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_desktop_viewport_get",&obj0
)) goto fail
;
2484 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2485 result
= (Atom
) ((arg1
)->net_desktop_viewport
);
2487 resultobj
= PyInt_FromLong((long)result
);
2494 static PyObject
*_wrap_Atoms_net_current_desktop_set(PyObject
*self
, PyObject
*args
) {
2495 PyObject
*resultobj
;
2496 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2498 PyObject
* obj0
= 0 ;
2499 PyObject
* obj1
= 0 ;
2501 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_current_desktop_set",&obj0
,&obj1
)) goto fail
;
2502 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2503 arg2
= (Atom
) PyInt_AsLong(obj1
);
2504 if (PyErr_Occurred()) SWIG_fail
;
2505 if (arg1
) (arg1
)->net_current_desktop
= arg2
;
2507 Py_INCREF(Py_None
); resultobj
= Py_None
;
2514 static PyObject
*_wrap_Atoms_net_current_desktop_get(PyObject
*self
, PyObject
*args
) {
2515 PyObject
*resultobj
;
2516 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2518 PyObject
* obj0
= 0 ;
2520 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_current_desktop_get",&obj0
)) goto fail
;
2521 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2522 result
= (Atom
) ((arg1
)->net_current_desktop
);
2524 resultobj
= PyInt_FromLong((long)result
);
2531 static PyObject
*_wrap_Atoms_net_desktop_names_set(PyObject
*self
, PyObject
*args
) {
2532 PyObject
*resultobj
;
2533 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2535 PyObject
* obj0
= 0 ;
2536 PyObject
* obj1
= 0 ;
2538 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_desktop_names_set",&obj0
,&obj1
)) goto fail
;
2539 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2540 arg2
= (Atom
) PyInt_AsLong(obj1
);
2541 if (PyErr_Occurred()) SWIG_fail
;
2542 if (arg1
) (arg1
)->net_desktop_names
= arg2
;
2544 Py_INCREF(Py_None
); resultobj
= Py_None
;
2551 static PyObject
*_wrap_Atoms_net_desktop_names_get(PyObject
*self
, PyObject
*args
) {
2552 PyObject
*resultobj
;
2553 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2555 PyObject
* obj0
= 0 ;
2557 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_desktop_names_get",&obj0
)) goto fail
;
2558 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2559 result
= (Atom
) ((arg1
)->net_desktop_names
);
2561 resultobj
= PyInt_FromLong((long)result
);
2568 static PyObject
*_wrap_Atoms_net_active_window_set(PyObject
*self
, PyObject
*args
) {
2569 PyObject
*resultobj
;
2570 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2572 PyObject
* obj0
= 0 ;
2573 PyObject
* obj1
= 0 ;
2575 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_active_window_set",&obj0
,&obj1
)) goto fail
;
2576 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2577 arg2
= (Atom
) PyInt_AsLong(obj1
);
2578 if (PyErr_Occurred()) SWIG_fail
;
2579 if (arg1
) (arg1
)->net_active_window
= arg2
;
2581 Py_INCREF(Py_None
); resultobj
= Py_None
;
2588 static PyObject
*_wrap_Atoms_net_active_window_get(PyObject
*self
, PyObject
*args
) {
2589 PyObject
*resultobj
;
2590 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2592 PyObject
* obj0
= 0 ;
2594 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_active_window_get",&obj0
)) goto fail
;
2595 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2596 result
= (Atom
) ((arg1
)->net_active_window
);
2598 resultobj
= PyInt_FromLong((long)result
);
2605 static PyObject
*_wrap_Atoms_net_workarea_set(PyObject
*self
, PyObject
*args
) {
2606 PyObject
*resultobj
;
2607 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2609 PyObject
* obj0
= 0 ;
2610 PyObject
* obj1
= 0 ;
2612 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_workarea_set",&obj0
,&obj1
)) goto fail
;
2613 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2614 arg2
= (Atom
) PyInt_AsLong(obj1
);
2615 if (PyErr_Occurred()) SWIG_fail
;
2616 if (arg1
) (arg1
)->net_workarea
= arg2
;
2618 Py_INCREF(Py_None
); resultobj
= Py_None
;
2625 static PyObject
*_wrap_Atoms_net_workarea_get(PyObject
*self
, PyObject
*args
) {
2626 PyObject
*resultobj
;
2627 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2629 PyObject
* obj0
= 0 ;
2631 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_workarea_get",&obj0
)) goto fail
;
2632 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2633 result
= (Atom
) ((arg1
)->net_workarea
);
2635 resultobj
= PyInt_FromLong((long)result
);
2642 static PyObject
*_wrap_Atoms_net_supporting_wm_check_set(PyObject
*self
, PyObject
*args
) {
2643 PyObject
*resultobj
;
2644 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2646 PyObject
* obj0
= 0 ;
2647 PyObject
* obj1
= 0 ;
2649 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_supporting_wm_check_set",&obj0
,&obj1
)) goto fail
;
2650 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2651 arg2
= (Atom
) PyInt_AsLong(obj1
);
2652 if (PyErr_Occurred()) SWIG_fail
;
2653 if (arg1
) (arg1
)->net_supporting_wm_check
= arg2
;
2655 Py_INCREF(Py_None
); resultobj
= Py_None
;
2662 static PyObject
*_wrap_Atoms_net_supporting_wm_check_get(PyObject
*self
, PyObject
*args
) {
2663 PyObject
*resultobj
;
2664 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2666 PyObject
* obj0
= 0 ;
2668 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_supporting_wm_check_get",&obj0
)) goto fail
;
2669 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2670 result
= (Atom
) ((arg1
)->net_supporting_wm_check
);
2672 resultobj
= PyInt_FromLong((long)result
);
2679 static PyObject
*_wrap_Atoms_net_close_window_set(PyObject
*self
, PyObject
*args
) {
2680 PyObject
*resultobj
;
2681 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2683 PyObject
* obj0
= 0 ;
2684 PyObject
* obj1
= 0 ;
2686 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_close_window_set",&obj0
,&obj1
)) goto fail
;
2687 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2688 arg2
= (Atom
) PyInt_AsLong(obj1
);
2689 if (PyErr_Occurred()) SWIG_fail
;
2690 if (arg1
) (arg1
)->net_close_window
= arg2
;
2692 Py_INCREF(Py_None
); resultobj
= Py_None
;
2699 static PyObject
*_wrap_Atoms_net_close_window_get(PyObject
*self
, PyObject
*args
) {
2700 PyObject
*resultobj
;
2701 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2703 PyObject
* obj0
= 0 ;
2705 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_close_window_get",&obj0
)) goto fail
;
2706 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2707 result
= (Atom
) ((arg1
)->net_close_window
);
2709 resultobj
= PyInt_FromLong((long)result
);
2716 static PyObject
*_wrap_Atoms_net_wm_moveresize_set(PyObject
*self
, PyObject
*args
) {
2717 PyObject
*resultobj
;
2718 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2720 PyObject
* obj0
= 0 ;
2721 PyObject
* obj1
= 0 ;
2723 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_wm_moveresize_set",&obj0
,&obj1
)) goto fail
;
2724 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2725 arg2
= (Atom
) PyInt_AsLong(obj1
);
2726 if (PyErr_Occurred()) SWIG_fail
;
2727 if (arg1
) (arg1
)->net_wm_moveresize
= arg2
;
2729 Py_INCREF(Py_None
); resultobj
= Py_None
;
2736 static PyObject
*_wrap_Atoms_net_wm_moveresize_get(PyObject
*self
, PyObject
*args
) {
2737 PyObject
*resultobj
;
2738 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2740 PyObject
* obj0
= 0 ;
2742 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_wm_moveresize_get",&obj0
)) goto fail
;
2743 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2744 result
= (Atom
) ((arg1
)->net_wm_moveresize
);
2746 resultobj
= PyInt_FromLong((long)result
);
2753 static PyObject
*_wrap_Atoms_net_wm_name_set(PyObject
*self
, PyObject
*args
) {
2754 PyObject
*resultobj
;
2755 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2757 PyObject
* obj0
= 0 ;
2758 PyObject
* obj1
= 0 ;
2760 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_wm_name_set",&obj0
,&obj1
)) goto fail
;
2761 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2762 arg2
= (Atom
) PyInt_AsLong(obj1
);
2763 if (PyErr_Occurred()) SWIG_fail
;
2764 if (arg1
) (arg1
)->net_wm_name
= arg2
;
2766 Py_INCREF(Py_None
); resultobj
= Py_None
;
2773 static PyObject
*_wrap_Atoms_net_wm_name_get(PyObject
*self
, PyObject
*args
) {
2774 PyObject
*resultobj
;
2775 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2777 PyObject
* obj0
= 0 ;
2779 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_wm_name_get",&obj0
)) goto fail
;
2780 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2781 result
= (Atom
) ((arg1
)->net_wm_name
);
2783 resultobj
= PyInt_FromLong((long)result
);
2790 static PyObject
*_wrap_Atoms_net_wm_visible_name_set(PyObject
*self
, PyObject
*args
) {
2791 PyObject
*resultobj
;
2792 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2794 PyObject
* obj0
= 0 ;
2795 PyObject
* obj1
= 0 ;
2797 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_wm_visible_name_set",&obj0
,&obj1
)) goto fail
;
2798 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2799 arg2
= (Atom
) PyInt_AsLong(obj1
);
2800 if (PyErr_Occurred()) SWIG_fail
;
2801 if (arg1
) (arg1
)->net_wm_visible_name
= arg2
;
2803 Py_INCREF(Py_None
); resultobj
= Py_None
;
2810 static PyObject
*_wrap_Atoms_net_wm_visible_name_get(PyObject
*self
, PyObject
*args
) {
2811 PyObject
*resultobj
;
2812 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2814 PyObject
* obj0
= 0 ;
2816 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_wm_visible_name_get",&obj0
)) goto fail
;
2817 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2818 result
= (Atom
) ((arg1
)->net_wm_visible_name
);
2820 resultobj
= PyInt_FromLong((long)result
);
2827 static PyObject
*_wrap_Atoms_net_wm_icon_name_set(PyObject
*self
, PyObject
*args
) {
2828 PyObject
*resultobj
;
2829 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2831 PyObject
* obj0
= 0 ;
2832 PyObject
* obj1
= 0 ;
2834 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_wm_icon_name_set",&obj0
,&obj1
)) goto fail
;
2835 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2836 arg2
= (Atom
) PyInt_AsLong(obj1
);
2837 if (PyErr_Occurred()) SWIG_fail
;
2838 if (arg1
) (arg1
)->net_wm_icon_name
= arg2
;
2840 Py_INCREF(Py_None
); resultobj
= Py_None
;
2847 static PyObject
*_wrap_Atoms_net_wm_icon_name_get(PyObject
*self
, PyObject
*args
) {
2848 PyObject
*resultobj
;
2849 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2851 PyObject
* obj0
= 0 ;
2853 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_wm_icon_name_get",&obj0
)) goto fail
;
2854 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2855 result
= (Atom
) ((arg1
)->net_wm_icon_name
);
2857 resultobj
= PyInt_FromLong((long)result
);
2864 static PyObject
*_wrap_Atoms_net_wm_visible_icon_name_set(PyObject
*self
, PyObject
*args
) {
2865 PyObject
*resultobj
;
2866 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2868 PyObject
* obj0
= 0 ;
2869 PyObject
* obj1
= 0 ;
2871 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_wm_visible_icon_name_set",&obj0
,&obj1
)) goto fail
;
2872 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2873 arg2
= (Atom
) PyInt_AsLong(obj1
);
2874 if (PyErr_Occurred()) SWIG_fail
;
2875 if (arg1
) (arg1
)->net_wm_visible_icon_name
= arg2
;
2877 Py_INCREF(Py_None
); resultobj
= Py_None
;
2884 static PyObject
*_wrap_Atoms_net_wm_visible_icon_name_get(PyObject
*self
, PyObject
*args
) {
2885 PyObject
*resultobj
;
2886 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2888 PyObject
* obj0
= 0 ;
2890 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_wm_visible_icon_name_get",&obj0
)) goto fail
;
2891 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2892 result
= (Atom
) ((arg1
)->net_wm_visible_icon_name
);
2894 resultobj
= PyInt_FromLong((long)result
);
2901 static PyObject
*_wrap_Atoms_net_wm_desktop_set(PyObject
*self
, PyObject
*args
) {
2902 PyObject
*resultobj
;
2903 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2905 PyObject
* obj0
= 0 ;
2906 PyObject
* obj1
= 0 ;
2908 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_wm_desktop_set",&obj0
,&obj1
)) goto fail
;
2909 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2910 arg2
= (Atom
) PyInt_AsLong(obj1
);
2911 if (PyErr_Occurred()) SWIG_fail
;
2912 if (arg1
) (arg1
)->net_wm_desktop
= arg2
;
2914 Py_INCREF(Py_None
); resultobj
= Py_None
;
2921 static PyObject
*_wrap_Atoms_net_wm_desktop_get(PyObject
*self
, PyObject
*args
) {
2922 PyObject
*resultobj
;
2923 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2925 PyObject
* obj0
= 0 ;
2927 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_wm_desktop_get",&obj0
)) goto fail
;
2928 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2929 result
= (Atom
) ((arg1
)->net_wm_desktop
);
2931 resultobj
= PyInt_FromLong((long)result
);
2938 static PyObject
*_wrap_Atoms_net_wm_window_type_set(PyObject
*self
, PyObject
*args
) {
2939 PyObject
*resultobj
;
2940 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2942 PyObject
* obj0
= 0 ;
2943 PyObject
* obj1
= 0 ;
2945 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_wm_window_type_set",&obj0
,&obj1
)) goto fail
;
2946 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2947 arg2
= (Atom
) PyInt_AsLong(obj1
);
2948 if (PyErr_Occurred()) SWIG_fail
;
2949 if (arg1
) (arg1
)->net_wm_window_type
= arg2
;
2951 Py_INCREF(Py_None
); resultobj
= Py_None
;
2958 static PyObject
*_wrap_Atoms_net_wm_window_type_get(PyObject
*self
, PyObject
*args
) {
2959 PyObject
*resultobj
;
2960 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2962 PyObject
* obj0
= 0 ;
2964 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_wm_window_type_get",&obj0
)) goto fail
;
2965 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2966 result
= (Atom
) ((arg1
)->net_wm_window_type
);
2968 resultobj
= PyInt_FromLong((long)result
);
2975 static PyObject
*_wrap_Atoms_net_wm_state_set(PyObject
*self
, PyObject
*args
) {
2976 PyObject
*resultobj
;
2977 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2979 PyObject
* obj0
= 0 ;
2980 PyObject
* obj1
= 0 ;
2982 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_wm_state_set",&obj0
,&obj1
)) goto fail
;
2983 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
2984 arg2
= (Atom
) PyInt_AsLong(obj1
);
2985 if (PyErr_Occurred()) SWIG_fail
;
2986 if (arg1
) (arg1
)->net_wm_state
= arg2
;
2988 Py_INCREF(Py_None
); resultobj
= Py_None
;
2995 static PyObject
*_wrap_Atoms_net_wm_state_get(PyObject
*self
, PyObject
*args
) {
2996 PyObject
*resultobj
;
2997 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
2999 PyObject
* obj0
= 0 ;
3001 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_wm_state_get",&obj0
)) goto fail
;
3002 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3003 result
= (Atom
) ((arg1
)->net_wm_state
);
3005 resultobj
= PyInt_FromLong((long)result
);
3012 static PyObject
*_wrap_Atoms_net_wm_strut_set(PyObject
*self
, PyObject
*args
) {
3013 PyObject
*resultobj
;
3014 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3016 PyObject
* obj0
= 0 ;
3017 PyObject
* obj1
= 0 ;
3019 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_wm_strut_set",&obj0
,&obj1
)) goto fail
;
3020 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3021 arg2
= (Atom
) PyInt_AsLong(obj1
);
3022 if (PyErr_Occurred()) SWIG_fail
;
3023 if (arg1
) (arg1
)->net_wm_strut
= arg2
;
3025 Py_INCREF(Py_None
); resultobj
= Py_None
;
3032 static PyObject
*_wrap_Atoms_net_wm_strut_get(PyObject
*self
, PyObject
*args
) {
3033 PyObject
*resultobj
;
3034 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3036 PyObject
* obj0
= 0 ;
3038 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_wm_strut_get",&obj0
)) goto fail
;
3039 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3040 result
= (Atom
) ((arg1
)->net_wm_strut
);
3042 resultobj
= PyInt_FromLong((long)result
);
3049 static PyObject
*_wrap_Atoms_net_wm_allowed_actions_set(PyObject
*self
, PyObject
*args
) {
3050 PyObject
*resultobj
;
3051 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3053 PyObject
* obj0
= 0 ;
3054 PyObject
* obj1
= 0 ;
3056 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_wm_allowed_actions_set",&obj0
,&obj1
)) goto fail
;
3057 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3058 arg2
= (Atom
) PyInt_AsLong(obj1
);
3059 if (PyErr_Occurred()) SWIG_fail
;
3060 if (arg1
) (arg1
)->net_wm_allowed_actions
= arg2
;
3062 Py_INCREF(Py_None
); resultobj
= Py_None
;
3069 static PyObject
*_wrap_Atoms_net_wm_allowed_actions_get(PyObject
*self
, PyObject
*args
) {
3070 PyObject
*resultobj
;
3071 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3073 PyObject
* obj0
= 0 ;
3075 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_wm_allowed_actions_get",&obj0
)) goto fail
;
3076 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3077 result
= (Atom
) ((arg1
)->net_wm_allowed_actions
);
3079 resultobj
= PyInt_FromLong((long)result
);
3086 static PyObject
*_wrap_Atoms_net_wm_window_type_desktop_set(PyObject
*self
, PyObject
*args
) {
3087 PyObject
*resultobj
;
3088 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3090 PyObject
* obj0
= 0 ;
3091 PyObject
* obj1
= 0 ;
3093 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_wm_window_type_desktop_set",&obj0
,&obj1
)) goto fail
;
3094 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3095 arg2
= (Atom
) PyInt_AsLong(obj1
);
3096 if (PyErr_Occurred()) SWIG_fail
;
3097 if (arg1
) (arg1
)->net_wm_window_type_desktop
= arg2
;
3099 Py_INCREF(Py_None
); resultobj
= Py_None
;
3106 static PyObject
*_wrap_Atoms_net_wm_window_type_desktop_get(PyObject
*self
, PyObject
*args
) {
3107 PyObject
*resultobj
;
3108 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3110 PyObject
* obj0
= 0 ;
3112 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_wm_window_type_desktop_get",&obj0
)) goto fail
;
3113 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3114 result
= (Atom
) ((arg1
)->net_wm_window_type_desktop
);
3116 resultobj
= PyInt_FromLong((long)result
);
3123 static PyObject
*_wrap_Atoms_net_wm_window_type_dock_set(PyObject
*self
, PyObject
*args
) {
3124 PyObject
*resultobj
;
3125 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3127 PyObject
* obj0
= 0 ;
3128 PyObject
* obj1
= 0 ;
3130 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_wm_window_type_dock_set",&obj0
,&obj1
)) goto fail
;
3131 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3132 arg2
= (Atom
) PyInt_AsLong(obj1
);
3133 if (PyErr_Occurred()) SWIG_fail
;
3134 if (arg1
) (arg1
)->net_wm_window_type_dock
= arg2
;
3136 Py_INCREF(Py_None
); resultobj
= Py_None
;
3143 static PyObject
*_wrap_Atoms_net_wm_window_type_dock_get(PyObject
*self
, PyObject
*args
) {
3144 PyObject
*resultobj
;
3145 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3147 PyObject
* obj0
= 0 ;
3149 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_wm_window_type_dock_get",&obj0
)) goto fail
;
3150 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3151 result
= (Atom
) ((arg1
)->net_wm_window_type_dock
);
3153 resultobj
= PyInt_FromLong((long)result
);
3160 static PyObject
*_wrap_Atoms_net_wm_window_type_toolbar_set(PyObject
*self
, PyObject
*args
) {
3161 PyObject
*resultobj
;
3162 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3164 PyObject
* obj0
= 0 ;
3165 PyObject
* obj1
= 0 ;
3167 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_wm_window_type_toolbar_set",&obj0
,&obj1
)) goto fail
;
3168 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3169 arg2
= (Atom
) PyInt_AsLong(obj1
);
3170 if (PyErr_Occurred()) SWIG_fail
;
3171 if (arg1
) (arg1
)->net_wm_window_type_toolbar
= arg2
;
3173 Py_INCREF(Py_None
); resultobj
= Py_None
;
3180 static PyObject
*_wrap_Atoms_net_wm_window_type_toolbar_get(PyObject
*self
, PyObject
*args
) {
3181 PyObject
*resultobj
;
3182 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3184 PyObject
* obj0
= 0 ;
3186 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_wm_window_type_toolbar_get",&obj0
)) goto fail
;
3187 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3188 result
= (Atom
) ((arg1
)->net_wm_window_type_toolbar
);
3190 resultobj
= PyInt_FromLong((long)result
);
3197 static PyObject
*_wrap_Atoms_net_wm_window_type_menu_set(PyObject
*self
, PyObject
*args
) {
3198 PyObject
*resultobj
;
3199 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3201 PyObject
* obj0
= 0 ;
3202 PyObject
* obj1
= 0 ;
3204 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_wm_window_type_menu_set",&obj0
,&obj1
)) goto fail
;
3205 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3206 arg2
= (Atom
) PyInt_AsLong(obj1
);
3207 if (PyErr_Occurred()) SWIG_fail
;
3208 if (arg1
) (arg1
)->net_wm_window_type_menu
= arg2
;
3210 Py_INCREF(Py_None
); resultobj
= Py_None
;
3217 static PyObject
*_wrap_Atoms_net_wm_window_type_menu_get(PyObject
*self
, PyObject
*args
) {
3218 PyObject
*resultobj
;
3219 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3221 PyObject
* obj0
= 0 ;
3223 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_wm_window_type_menu_get",&obj0
)) goto fail
;
3224 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3225 result
= (Atom
) ((arg1
)->net_wm_window_type_menu
);
3227 resultobj
= PyInt_FromLong((long)result
);
3234 static PyObject
*_wrap_Atoms_net_wm_window_type_utility_set(PyObject
*self
, PyObject
*args
) {
3235 PyObject
*resultobj
;
3236 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3238 PyObject
* obj0
= 0 ;
3239 PyObject
* obj1
= 0 ;
3241 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_wm_window_type_utility_set",&obj0
,&obj1
)) goto fail
;
3242 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3243 arg2
= (Atom
) PyInt_AsLong(obj1
);
3244 if (PyErr_Occurred()) SWIG_fail
;
3245 if (arg1
) (arg1
)->net_wm_window_type_utility
= arg2
;
3247 Py_INCREF(Py_None
); resultobj
= Py_None
;
3254 static PyObject
*_wrap_Atoms_net_wm_window_type_utility_get(PyObject
*self
, PyObject
*args
) {
3255 PyObject
*resultobj
;
3256 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3258 PyObject
* obj0
= 0 ;
3260 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_wm_window_type_utility_get",&obj0
)) goto fail
;
3261 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3262 result
= (Atom
) ((arg1
)->net_wm_window_type_utility
);
3264 resultobj
= PyInt_FromLong((long)result
);
3271 static PyObject
*_wrap_Atoms_net_wm_window_type_splash_set(PyObject
*self
, PyObject
*args
) {
3272 PyObject
*resultobj
;
3273 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3275 PyObject
* obj0
= 0 ;
3276 PyObject
* obj1
= 0 ;
3278 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_wm_window_type_splash_set",&obj0
,&obj1
)) goto fail
;
3279 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3280 arg2
= (Atom
) PyInt_AsLong(obj1
);
3281 if (PyErr_Occurred()) SWIG_fail
;
3282 if (arg1
) (arg1
)->net_wm_window_type_splash
= arg2
;
3284 Py_INCREF(Py_None
); resultobj
= Py_None
;
3291 static PyObject
*_wrap_Atoms_net_wm_window_type_splash_get(PyObject
*self
, PyObject
*args
) {
3292 PyObject
*resultobj
;
3293 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3295 PyObject
* obj0
= 0 ;
3297 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_wm_window_type_splash_get",&obj0
)) goto fail
;
3298 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3299 result
= (Atom
) ((arg1
)->net_wm_window_type_splash
);
3301 resultobj
= PyInt_FromLong((long)result
);
3308 static PyObject
*_wrap_Atoms_net_wm_window_type_dialog_set(PyObject
*self
, PyObject
*args
) {
3309 PyObject
*resultobj
;
3310 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3312 PyObject
* obj0
= 0 ;
3313 PyObject
* obj1
= 0 ;
3315 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_wm_window_type_dialog_set",&obj0
,&obj1
)) goto fail
;
3316 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3317 arg2
= (Atom
) PyInt_AsLong(obj1
);
3318 if (PyErr_Occurred()) SWIG_fail
;
3319 if (arg1
) (arg1
)->net_wm_window_type_dialog
= arg2
;
3321 Py_INCREF(Py_None
); resultobj
= Py_None
;
3328 static PyObject
*_wrap_Atoms_net_wm_window_type_dialog_get(PyObject
*self
, PyObject
*args
) {
3329 PyObject
*resultobj
;
3330 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3332 PyObject
* obj0
= 0 ;
3334 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_wm_window_type_dialog_get",&obj0
)) goto fail
;
3335 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3336 result
= (Atom
) ((arg1
)->net_wm_window_type_dialog
);
3338 resultobj
= PyInt_FromLong((long)result
);
3345 static PyObject
*_wrap_Atoms_net_wm_window_type_normal_set(PyObject
*self
, PyObject
*args
) {
3346 PyObject
*resultobj
;
3347 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3349 PyObject
* obj0
= 0 ;
3350 PyObject
* obj1
= 0 ;
3352 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_wm_window_type_normal_set",&obj0
,&obj1
)) goto fail
;
3353 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3354 arg2
= (Atom
) PyInt_AsLong(obj1
);
3355 if (PyErr_Occurred()) SWIG_fail
;
3356 if (arg1
) (arg1
)->net_wm_window_type_normal
= arg2
;
3358 Py_INCREF(Py_None
); resultobj
= Py_None
;
3365 static PyObject
*_wrap_Atoms_net_wm_window_type_normal_get(PyObject
*self
, PyObject
*args
) {
3366 PyObject
*resultobj
;
3367 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3369 PyObject
* obj0
= 0 ;
3371 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_wm_window_type_normal_get",&obj0
)) goto fail
;
3372 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3373 result
= (Atom
) ((arg1
)->net_wm_window_type_normal
);
3375 resultobj
= PyInt_FromLong((long)result
);
3382 static PyObject
*_wrap_Atoms_net_wm_moveresize_size_topleft_set(PyObject
*self
, PyObject
*args
) {
3383 PyObject
*resultobj
;
3384 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3386 PyObject
* obj0
= 0 ;
3387 PyObject
* obj1
= 0 ;
3389 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_wm_moveresize_size_topleft_set",&obj0
,&obj1
)) goto fail
;
3390 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3391 arg2
= (Atom
) PyInt_AsLong(obj1
);
3392 if (PyErr_Occurred()) SWIG_fail
;
3393 if (arg1
) (arg1
)->net_wm_moveresize_size_topleft
= arg2
;
3395 Py_INCREF(Py_None
); resultobj
= Py_None
;
3402 static PyObject
*_wrap_Atoms_net_wm_moveresize_size_topleft_get(PyObject
*self
, PyObject
*args
) {
3403 PyObject
*resultobj
;
3404 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3406 PyObject
* obj0
= 0 ;
3408 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_wm_moveresize_size_topleft_get",&obj0
)) goto fail
;
3409 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3410 result
= (Atom
) ((arg1
)->net_wm_moveresize_size_topleft
);
3412 resultobj
= PyInt_FromLong((long)result
);
3419 static PyObject
*_wrap_Atoms_net_wm_moveresize_size_topright_set(PyObject
*self
, PyObject
*args
) {
3420 PyObject
*resultobj
;
3421 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3423 PyObject
* obj0
= 0 ;
3424 PyObject
* obj1
= 0 ;
3426 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_wm_moveresize_size_topright_set",&obj0
,&obj1
)) goto fail
;
3427 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3428 arg2
= (Atom
) PyInt_AsLong(obj1
);
3429 if (PyErr_Occurred()) SWIG_fail
;
3430 if (arg1
) (arg1
)->net_wm_moveresize_size_topright
= arg2
;
3432 Py_INCREF(Py_None
); resultobj
= Py_None
;
3439 static PyObject
*_wrap_Atoms_net_wm_moveresize_size_topright_get(PyObject
*self
, PyObject
*args
) {
3440 PyObject
*resultobj
;
3441 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3443 PyObject
* obj0
= 0 ;
3445 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_wm_moveresize_size_topright_get",&obj0
)) goto fail
;
3446 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3447 result
= (Atom
) ((arg1
)->net_wm_moveresize_size_topright
);
3449 resultobj
= PyInt_FromLong((long)result
);
3456 static PyObject
*_wrap_Atoms_net_wm_moveresize_size_bottomleft_set(PyObject
*self
, PyObject
*args
) {
3457 PyObject
*resultobj
;
3458 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3460 PyObject
* obj0
= 0 ;
3461 PyObject
* obj1
= 0 ;
3463 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_wm_moveresize_size_bottomleft_set",&obj0
,&obj1
)) goto fail
;
3464 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3465 arg2
= (Atom
) PyInt_AsLong(obj1
);
3466 if (PyErr_Occurred()) SWIG_fail
;
3467 if (arg1
) (arg1
)->net_wm_moveresize_size_bottomleft
= arg2
;
3469 Py_INCREF(Py_None
); resultobj
= Py_None
;
3476 static PyObject
*_wrap_Atoms_net_wm_moveresize_size_bottomleft_get(PyObject
*self
, PyObject
*args
) {
3477 PyObject
*resultobj
;
3478 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3480 PyObject
* obj0
= 0 ;
3482 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_wm_moveresize_size_bottomleft_get",&obj0
)) goto fail
;
3483 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3484 result
= (Atom
) ((arg1
)->net_wm_moveresize_size_bottomleft
);
3486 resultobj
= PyInt_FromLong((long)result
);
3493 static PyObject
*_wrap_Atoms_net_wm_moveresize_size_bottomright_set(PyObject
*self
, PyObject
*args
) {
3494 PyObject
*resultobj
;
3495 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3497 PyObject
* obj0
= 0 ;
3498 PyObject
* obj1
= 0 ;
3500 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_wm_moveresize_size_bottomright_set",&obj0
,&obj1
)) goto fail
;
3501 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3502 arg2
= (Atom
) PyInt_AsLong(obj1
);
3503 if (PyErr_Occurred()) SWIG_fail
;
3504 if (arg1
) (arg1
)->net_wm_moveresize_size_bottomright
= arg2
;
3506 Py_INCREF(Py_None
); resultobj
= Py_None
;
3513 static PyObject
*_wrap_Atoms_net_wm_moveresize_size_bottomright_get(PyObject
*self
, PyObject
*args
) {
3514 PyObject
*resultobj
;
3515 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3517 PyObject
* obj0
= 0 ;
3519 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_wm_moveresize_size_bottomright_get",&obj0
)) goto fail
;
3520 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3521 result
= (Atom
) ((arg1
)->net_wm_moveresize_size_bottomright
);
3523 resultobj
= PyInt_FromLong((long)result
);
3530 static PyObject
*_wrap_Atoms_net_wm_moveresize_move_set(PyObject
*self
, PyObject
*args
) {
3531 PyObject
*resultobj
;
3532 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3534 PyObject
* obj0
= 0 ;
3535 PyObject
* obj1
= 0 ;
3537 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_wm_moveresize_move_set",&obj0
,&obj1
)) goto fail
;
3538 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3539 arg2
= (Atom
) PyInt_AsLong(obj1
);
3540 if (PyErr_Occurred()) SWIG_fail
;
3541 if (arg1
) (arg1
)->net_wm_moveresize_move
= arg2
;
3543 Py_INCREF(Py_None
); resultobj
= Py_None
;
3550 static PyObject
*_wrap_Atoms_net_wm_moveresize_move_get(PyObject
*self
, PyObject
*args
) {
3551 PyObject
*resultobj
;
3552 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3554 PyObject
* obj0
= 0 ;
3556 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_wm_moveresize_move_get",&obj0
)) goto fail
;
3557 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3558 result
= (Atom
) ((arg1
)->net_wm_moveresize_move
);
3560 resultobj
= PyInt_FromLong((long)result
);
3567 static PyObject
*_wrap_Atoms_net_wm_action_move_set(PyObject
*self
, PyObject
*args
) {
3568 PyObject
*resultobj
;
3569 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3571 PyObject
* obj0
= 0 ;
3572 PyObject
* obj1
= 0 ;
3574 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_wm_action_move_set",&obj0
,&obj1
)) goto fail
;
3575 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3576 arg2
= (Atom
) PyInt_AsLong(obj1
);
3577 if (PyErr_Occurred()) SWIG_fail
;
3578 if (arg1
) (arg1
)->net_wm_action_move
= arg2
;
3580 Py_INCREF(Py_None
); resultobj
= Py_None
;
3587 static PyObject
*_wrap_Atoms_net_wm_action_move_get(PyObject
*self
, PyObject
*args
) {
3588 PyObject
*resultobj
;
3589 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3591 PyObject
* obj0
= 0 ;
3593 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_wm_action_move_get",&obj0
)) goto fail
;
3594 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3595 result
= (Atom
) ((arg1
)->net_wm_action_move
);
3597 resultobj
= PyInt_FromLong((long)result
);
3604 static PyObject
*_wrap_Atoms_net_wm_action_resize_set(PyObject
*self
, PyObject
*args
) {
3605 PyObject
*resultobj
;
3606 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3608 PyObject
* obj0
= 0 ;
3609 PyObject
* obj1
= 0 ;
3611 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_wm_action_resize_set",&obj0
,&obj1
)) goto fail
;
3612 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3613 arg2
= (Atom
) PyInt_AsLong(obj1
);
3614 if (PyErr_Occurred()) SWIG_fail
;
3615 if (arg1
) (arg1
)->net_wm_action_resize
= arg2
;
3617 Py_INCREF(Py_None
); resultobj
= Py_None
;
3624 static PyObject
*_wrap_Atoms_net_wm_action_resize_get(PyObject
*self
, PyObject
*args
) {
3625 PyObject
*resultobj
;
3626 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3628 PyObject
* obj0
= 0 ;
3630 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_wm_action_resize_get",&obj0
)) goto fail
;
3631 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3632 result
= (Atom
) ((arg1
)->net_wm_action_resize
);
3634 resultobj
= PyInt_FromLong((long)result
);
3641 static PyObject
*_wrap_Atoms_net_wm_action_minimize_set(PyObject
*self
, PyObject
*args
) {
3642 PyObject
*resultobj
;
3643 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3645 PyObject
* obj0
= 0 ;
3646 PyObject
* obj1
= 0 ;
3648 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_wm_action_minimize_set",&obj0
,&obj1
)) goto fail
;
3649 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3650 arg2
= (Atom
) PyInt_AsLong(obj1
);
3651 if (PyErr_Occurred()) SWIG_fail
;
3652 if (arg1
) (arg1
)->net_wm_action_minimize
= arg2
;
3654 Py_INCREF(Py_None
); resultobj
= Py_None
;
3661 static PyObject
*_wrap_Atoms_net_wm_action_minimize_get(PyObject
*self
, PyObject
*args
) {
3662 PyObject
*resultobj
;
3663 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3665 PyObject
* obj0
= 0 ;
3667 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_wm_action_minimize_get",&obj0
)) goto fail
;
3668 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3669 result
= (Atom
) ((arg1
)->net_wm_action_minimize
);
3671 resultobj
= PyInt_FromLong((long)result
);
3678 static PyObject
*_wrap_Atoms_net_wm_action_shade_set(PyObject
*self
, PyObject
*args
) {
3679 PyObject
*resultobj
;
3680 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3682 PyObject
* obj0
= 0 ;
3683 PyObject
* obj1
= 0 ;
3685 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_wm_action_shade_set",&obj0
,&obj1
)) goto fail
;
3686 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3687 arg2
= (Atom
) PyInt_AsLong(obj1
);
3688 if (PyErr_Occurred()) SWIG_fail
;
3689 if (arg1
) (arg1
)->net_wm_action_shade
= arg2
;
3691 Py_INCREF(Py_None
); resultobj
= Py_None
;
3698 static PyObject
*_wrap_Atoms_net_wm_action_shade_get(PyObject
*self
, PyObject
*args
) {
3699 PyObject
*resultobj
;
3700 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3702 PyObject
* obj0
= 0 ;
3704 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_wm_action_shade_get",&obj0
)) goto fail
;
3705 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3706 result
= (Atom
) ((arg1
)->net_wm_action_shade
);
3708 resultobj
= PyInt_FromLong((long)result
);
3715 static PyObject
*_wrap_Atoms_net_wm_action_stick_set(PyObject
*self
, PyObject
*args
) {
3716 PyObject
*resultobj
;
3717 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3719 PyObject
* obj0
= 0 ;
3720 PyObject
* obj1
= 0 ;
3722 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_wm_action_stick_set",&obj0
,&obj1
)) goto fail
;
3723 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3724 arg2
= (Atom
) PyInt_AsLong(obj1
);
3725 if (PyErr_Occurred()) SWIG_fail
;
3726 if (arg1
) (arg1
)->net_wm_action_stick
= arg2
;
3728 Py_INCREF(Py_None
); resultobj
= Py_None
;
3735 static PyObject
*_wrap_Atoms_net_wm_action_stick_get(PyObject
*self
, PyObject
*args
) {
3736 PyObject
*resultobj
;
3737 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3739 PyObject
* obj0
= 0 ;
3741 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_wm_action_stick_get",&obj0
)) goto fail
;
3742 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3743 result
= (Atom
) ((arg1
)->net_wm_action_stick
);
3745 resultobj
= PyInt_FromLong((long)result
);
3752 static PyObject
*_wrap_Atoms_net_wm_action_maximize_horz_set(PyObject
*self
, PyObject
*args
) {
3753 PyObject
*resultobj
;
3754 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3756 PyObject
* obj0
= 0 ;
3757 PyObject
* obj1
= 0 ;
3759 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_wm_action_maximize_horz_set",&obj0
,&obj1
)) goto fail
;
3760 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3761 arg2
= (Atom
) PyInt_AsLong(obj1
);
3762 if (PyErr_Occurred()) SWIG_fail
;
3763 if (arg1
) (arg1
)->net_wm_action_maximize_horz
= arg2
;
3765 Py_INCREF(Py_None
); resultobj
= Py_None
;
3772 static PyObject
*_wrap_Atoms_net_wm_action_maximize_horz_get(PyObject
*self
, PyObject
*args
) {
3773 PyObject
*resultobj
;
3774 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3776 PyObject
* obj0
= 0 ;
3778 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_wm_action_maximize_horz_get",&obj0
)) goto fail
;
3779 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3780 result
= (Atom
) ((arg1
)->net_wm_action_maximize_horz
);
3782 resultobj
= PyInt_FromLong((long)result
);
3789 static PyObject
*_wrap_Atoms_net_wm_action_maximize_vert_set(PyObject
*self
, PyObject
*args
) {
3790 PyObject
*resultobj
;
3791 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3793 PyObject
* obj0
= 0 ;
3794 PyObject
* obj1
= 0 ;
3796 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_wm_action_maximize_vert_set",&obj0
,&obj1
)) goto fail
;
3797 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3798 arg2
= (Atom
) PyInt_AsLong(obj1
);
3799 if (PyErr_Occurred()) SWIG_fail
;
3800 if (arg1
) (arg1
)->net_wm_action_maximize_vert
= arg2
;
3802 Py_INCREF(Py_None
); resultobj
= Py_None
;
3809 static PyObject
*_wrap_Atoms_net_wm_action_maximize_vert_get(PyObject
*self
, PyObject
*args
) {
3810 PyObject
*resultobj
;
3811 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3813 PyObject
* obj0
= 0 ;
3815 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_wm_action_maximize_vert_get",&obj0
)) goto fail
;
3816 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3817 result
= (Atom
) ((arg1
)->net_wm_action_maximize_vert
);
3819 resultobj
= PyInt_FromLong((long)result
);
3826 static PyObject
*_wrap_Atoms_net_wm_action_fullscreen_set(PyObject
*self
, PyObject
*args
) {
3827 PyObject
*resultobj
;
3828 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3830 PyObject
* obj0
= 0 ;
3831 PyObject
* obj1
= 0 ;
3833 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_wm_action_fullscreen_set",&obj0
,&obj1
)) goto fail
;
3834 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3835 arg2
= (Atom
) PyInt_AsLong(obj1
);
3836 if (PyErr_Occurred()) SWIG_fail
;
3837 if (arg1
) (arg1
)->net_wm_action_fullscreen
= arg2
;
3839 Py_INCREF(Py_None
); resultobj
= Py_None
;
3846 static PyObject
*_wrap_Atoms_net_wm_action_fullscreen_get(PyObject
*self
, PyObject
*args
) {
3847 PyObject
*resultobj
;
3848 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3850 PyObject
* obj0
= 0 ;
3852 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_wm_action_fullscreen_get",&obj0
)) goto fail
;
3853 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3854 result
= (Atom
) ((arg1
)->net_wm_action_fullscreen
);
3856 resultobj
= PyInt_FromLong((long)result
);
3863 static PyObject
*_wrap_Atoms_net_wm_action_change_desktop_set(PyObject
*self
, PyObject
*args
) {
3864 PyObject
*resultobj
;
3865 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3867 PyObject
* obj0
= 0 ;
3868 PyObject
* obj1
= 0 ;
3870 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_wm_action_change_desktop_set",&obj0
,&obj1
)) goto fail
;
3871 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3872 arg2
= (Atom
) PyInt_AsLong(obj1
);
3873 if (PyErr_Occurred()) SWIG_fail
;
3874 if (arg1
) (arg1
)->net_wm_action_change_desktop
= arg2
;
3876 Py_INCREF(Py_None
); resultobj
= Py_None
;
3883 static PyObject
*_wrap_Atoms_net_wm_action_change_desktop_get(PyObject
*self
, PyObject
*args
) {
3884 PyObject
*resultobj
;
3885 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3887 PyObject
* obj0
= 0 ;
3889 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_wm_action_change_desktop_get",&obj0
)) goto fail
;
3890 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3891 result
= (Atom
) ((arg1
)->net_wm_action_change_desktop
);
3893 resultobj
= PyInt_FromLong((long)result
);
3900 static PyObject
*_wrap_Atoms_net_wm_action_close_set(PyObject
*self
, PyObject
*args
) {
3901 PyObject
*resultobj
;
3902 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3904 PyObject
* obj0
= 0 ;
3905 PyObject
* obj1
= 0 ;
3907 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_wm_action_close_set",&obj0
,&obj1
)) goto fail
;
3908 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3909 arg2
= (Atom
) PyInt_AsLong(obj1
);
3910 if (PyErr_Occurred()) SWIG_fail
;
3911 if (arg1
) (arg1
)->net_wm_action_close
= arg2
;
3913 Py_INCREF(Py_None
); resultobj
= Py_None
;
3920 static PyObject
*_wrap_Atoms_net_wm_action_close_get(PyObject
*self
, PyObject
*args
) {
3921 PyObject
*resultobj
;
3922 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3924 PyObject
* obj0
= 0 ;
3926 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_wm_action_close_get",&obj0
)) goto fail
;
3927 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3928 result
= (Atom
) ((arg1
)->net_wm_action_close
);
3930 resultobj
= PyInt_FromLong((long)result
);
3937 static PyObject
*_wrap_Atoms_net_wm_state_modal_set(PyObject
*self
, PyObject
*args
) {
3938 PyObject
*resultobj
;
3939 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3941 PyObject
* obj0
= 0 ;
3942 PyObject
* obj1
= 0 ;
3944 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_wm_state_modal_set",&obj0
,&obj1
)) goto fail
;
3945 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3946 arg2
= (Atom
) PyInt_AsLong(obj1
);
3947 if (PyErr_Occurred()) SWIG_fail
;
3948 if (arg1
) (arg1
)->net_wm_state_modal
= arg2
;
3950 Py_INCREF(Py_None
); resultobj
= Py_None
;
3957 static PyObject
*_wrap_Atoms_net_wm_state_modal_get(PyObject
*self
, PyObject
*args
) {
3958 PyObject
*resultobj
;
3959 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3961 PyObject
* obj0
= 0 ;
3963 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_wm_state_modal_get",&obj0
)) goto fail
;
3964 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3965 result
= (Atom
) ((arg1
)->net_wm_state_modal
);
3967 resultobj
= PyInt_FromLong((long)result
);
3974 static PyObject
*_wrap_Atoms_net_wm_state_sticky_set(PyObject
*self
, PyObject
*args
) {
3975 PyObject
*resultobj
;
3976 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3978 PyObject
* obj0
= 0 ;
3979 PyObject
* obj1
= 0 ;
3981 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_wm_state_sticky_set",&obj0
,&obj1
)) goto fail
;
3982 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
3983 arg2
= (Atom
) PyInt_AsLong(obj1
);
3984 if (PyErr_Occurred()) SWIG_fail
;
3985 if (arg1
) (arg1
)->net_wm_state_sticky
= arg2
;
3987 Py_INCREF(Py_None
); resultobj
= Py_None
;
3994 static PyObject
*_wrap_Atoms_net_wm_state_sticky_get(PyObject
*self
, PyObject
*args
) {
3995 PyObject
*resultobj
;
3996 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
3998 PyObject
* obj0
= 0 ;
4000 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_wm_state_sticky_get",&obj0
)) goto fail
;
4001 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4002 result
= (Atom
) ((arg1
)->net_wm_state_sticky
);
4004 resultobj
= PyInt_FromLong((long)result
);
4011 static PyObject
*_wrap_Atoms_net_wm_state_maximized_vert_set(PyObject
*self
, PyObject
*args
) {
4012 PyObject
*resultobj
;
4013 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
4015 PyObject
* obj0
= 0 ;
4016 PyObject
* obj1
= 0 ;
4018 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_wm_state_maximized_vert_set",&obj0
,&obj1
)) goto fail
;
4019 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4020 arg2
= (Atom
) PyInt_AsLong(obj1
);
4021 if (PyErr_Occurred()) SWIG_fail
;
4022 if (arg1
) (arg1
)->net_wm_state_maximized_vert
= arg2
;
4024 Py_INCREF(Py_None
); resultobj
= Py_None
;
4031 static PyObject
*_wrap_Atoms_net_wm_state_maximized_vert_get(PyObject
*self
, PyObject
*args
) {
4032 PyObject
*resultobj
;
4033 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
4035 PyObject
* obj0
= 0 ;
4037 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_wm_state_maximized_vert_get",&obj0
)) goto fail
;
4038 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4039 result
= (Atom
) ((arg1
)->net_wm_state_maximized_vert
);
4041 resultobj
= PyInt_FromLong((long)result
);
4048 static PyObject
*_wrap_Atoms_net_wm_state_maximized_horz_set(PyObject
*self
, PyObject
*args
) {
4049 PyObject
*resultobj
;
4050 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
4052 PyObject
* obj0
= 0 ;
4053 PyObject
* obj1
= 0 ;
4055 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_wm_state_maximized_horz_set",&obj0
,&obj1
)) goto fail
;
4056 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4057 arg2
= (Atom
) PyInt_AsLong(obj1
);
4058 if (PyErr_Occurred()) SWIG_fail
;
4059 if (arg1
) (arg1
)->net_wm_state_maximized_horz
= arg2
;
4061 Py_INCREF(Py_None
); resultobj
= Py_None
;
4068 static PyObject
*_wrap_Atoms_net_wm_state_maximized_horz_get(PyObject
*self
, PyObject
*args
) {
4069 PyObject
*resultobj
;
4070 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
4072 PyObject
* obj0
= 0 ;
4074 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_wm_state_maximized_horz_get",&obj0
)) goto fail
;
4075 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4076 result
= (Atom
) ((arg1
)->net_wm_state_maximized_horz
);
4078 resultobj
= PyInt_FromLong((long)result
);
4085 static PyObject
*_wrap_Atoms_net_wm_state_shaded_set(PyObject
*self
, PyObject
*args
) {
4086 PyObject
*resultobj
;
4087 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
4089 PyObject
* obj0
= 0 ;
4090 PyObject
* obj1
= 0 ;
4092 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_wm_state_shaded_set",&obj0
,&obj1
)) goto fail
;
4093 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4094 arg2
= (Atom
) PyInt_AsLong(obj1
);
4095 if (PyErr_Occurred()) SWIG_fail
;
4096 if (arg1
) (arg1
)->net_wm_state_shaded
= arg2
;
4098 Py_INCREF(Py_None
); resultobj
= Py_None
;
4105 static PyObject
*_wrap_Atoms_net_wm_state_shaded_get(PyObject
*self
, PyObject
*args
) {
4106 PyObject
*resultobj
;
4107 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
4109 PyObject
* obj0
= 0 ;
4111 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_wm_state_shaded_get",&obj0
)) goto fail
;
4112 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4113 result
= (Atom
) ((arg1
)->net_wm_state_shaded
);
4115 resultobj
= PyInt_FromLong((long)result
);
4122 static PyObject
*_wrap_Atoms_net_wm_state_skip_taskbar_set(PyObject
*self
, PyObject
*args
) {
4123 PyObject
*resultobj
;
4124 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
4126 PyObject
* obj0
= 0 ;
4127 PyObject
* obj1
= 0 ;
4129 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_wm_state_skip_taskbar_set",&obj0
,&obj1
)) goto fail
;
4130 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4131 arg2
= (Atom
) PyInt_AsLong(obj1
);
4132 if (PyErr_Occurred()) SWIG_fail
;
4133 if (arg1
) (arg1
)->net_wm_state_skip_taskbar
= arg2
;
4135 Py_INCREF(Py_None
); resultobj
= Py_None
;
4142 static PyObject
*_wrap_Atoms_net_wm_state_skip_taskbar_get(PyObject
*self
, PyObject
*args
) {
4143 PyObject
*resultobj
;
4144 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
4146 PyObject
* obj0
= 0 ;
4148 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_wm_state_skip_taskbar_get",&obj0
)) goto fail
;
4149 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4150 result
= (Atom
) ((arg1
)->net_wm_state_skip_taskbar
);
4152 resultobj
= PyInt_FromLong((long)result
);
4159 static PyObject
*_wrap_Atoms_net_wm_state_skip_pager_set(PyObject
*self
, PyObject
*args
) {
4160 PyObject
*resultobj
;
4161 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
4163 PyObject
* obj0
= 0 ;
4164 PyObject
* obj1
= 0 ;
4166 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_wm_state_skip_pager_set",&obj0
,&obj1
)) goto fail
;
4167 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4168 arg2
= (Atom
) PyInt_AsLong(obj1
);
4169 if (PyErr_Occurred()) SWIG_fail
;
4170 if (arg1
) (arg1
)->net_wm_state_skip_pager
= arg2
;
4172 Py_INCREF(Py_None
); resultobj
= Py_None
;
4179 static PyObject
*_wrap_Atoms_net_wm_state_skip_pager_get(PyObject
*self
, PyObject
*args
) {
4180 PyObject
*resultobj
;
4181 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
4183 PyObject
* obj0
= 0 ;
4185 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_wm_state_skip_pager_get",&obj0
)) goto fail
;
4186 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4187 result
= (Atom
) ((arg1
)->net_wm_state_skip_pager
);
4189 resultobj
= PyInt_FromLong((long)result
);
4196 static PyObject
*_wrap_Atoms_net_wm_state_hidden_set(PyObject
*self
, PyObject
*args
) {
4197 PyObject
*resultobj
;
4198 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
4200 PyObject
* obj0
= 0 ;
4201 PyObject
* obj1
= 0 ;
4203 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_wm_state_hidden_set",&obj0
,&obj1
)) goto fail
;
4204 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4205 arg2
= (Atom
) PyInt_AsLong(obj1
);
4206 if (PyErr_Occurred()) SWIG_fail
;
4207 if (arg1
) (arg1
)->net_wm_state_hidden
= arg2
;
4209 Py_INCREF(Py_None
); resultobj
= Py_None
;
4216 static PyObject
*_wrap_Atoms_net_wm_state_hidden_get(PyObject
*self
, PyObject
*args
) {
4217 PyObject
*resultobj
;
4218 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
4220 PyObject
* obj0
= 0 ;
4222 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_wm_state_hidden_get",&obj0
)) goto fail
;
4223 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4224 result
= (Atom
) ((arg1
)->net_wm_state_hidden
);
4226 resultobj
= PyInt_FromLong((long)result
);
4233 static PyObject
*_wrap_Atoms_net_wm_state_fullscreen_set(PyObject
*self
, PyObject
*args
) {
4234 PyObject
*resultobj
;
4235 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
4237 PyObject
* obj0
= 0 ;
4238 PyObject
* obj1
= 0 ;
4240 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_wm_state_fullscreen_set",&obj0
,&obj1
)) goto fail
;
4241 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4242 arg2
= (Atom
) PyInt_AsLong(obj1
);
4243 if (PyErr_Occurred()) SWIG_fail
;
4244 if (arg1
) (arg1
)->net_wm_state_fullscreen
= arg2
;
4246 Py_INCREF(Py_None
); resultobj
= Py_None
;
4253 static PyObject
*_wrap_Atoms_net_wm_state_fullscreen_get(PyObject
*self
, PyObject
*args
) {
4254 PyObject
*resultobj
;
4255 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
4257 PyObject
* obj0
= 0 ;
4259 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_wm_state_fullscreen_get",&obj0
)) goto fail
;
4260 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4261 result
= (Atom
) ((arg1
)->net_wm_state_fullscreen
);
4263 resultobj
= PyInt_FromLong((long)result
);
4270 static PyObject
*_wrap_Atoms_net_wm_state_above_set(PyObject
*self
, PyObject
*args
) {
4271 PyObject
*resultobj
;
4272 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
4274 PyObject
* obj0
= 0 ;
4275 PyObject
* obj1
= 0 ;
4277 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_wm_state_above_set",&obj0
,&obj1
)) goto fail
;
4278 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4279 arg2
= (Atom
) PyInt_AsLong(obj1
);
4280 if (PyErr_Occurred()) SWIG_fail
;
4281 if (arg1
) (arg1
)->net_wm_state_above
= arg2
;
4283 Py_INCREF(Py_None
); resultobj
= Py_None
;
4290 static PyObject
*_wrap_Atoms_net_wm_state_above_get(PyObject
*self
, PyObject
*args
) {
4291 PyObject
*resultobj
;
4292 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
4294 PyObject
* obj0
= 0 ;
4296 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_wm_state_above_get",&obj0
)) goto fail
;
4297 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4298 result
= (Atom
) ((arg1
)->net_wm_state_above
);
4300 resultobj
= PyInt_FromLong((long)result
);
4307 static PyObject
*_wrap_Atoms_net_wm_state_below_set(PyObject
*self
, PyObject
*args
) {
4308 PyObject
*resultobj
;
4309 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
4311 PyObject
* obj0
= 0 ;
4312 PyObject
* obj1
= 0 ;
4314 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_net_wm_state_below_set",&obj0
,&obj1
)) goto fail
;
4315 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4316 arg2
= (Atom
) PyInt_AsLong(obj1
);
4317 if (PyErr_Occurred()) SWIG_fail
;
4318 if (arg1
) (arg1
)->net_wm_state_below
= arg2
;
4320 Py_INCREF(Py_None
); resultobj
= Py_None
;
4327 static PyObject
*_wrap_Atoms_net_wm_state_below_get(PyObject
*self
, PyObject
*args
) {
4328 PyObject
*resultobj
;
4329 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
4331 PyObject
* obj0
= 0 ;
4333 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_net_wm_state_below_get",&obj0
)) goto fail
;
4334 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4335 result
= (Atom
) ((arg1
)->net_wm_state_below
);
4337 resultobj
= PyInt_FromLong((long)result
);
4344 static PyObject
*_wrap_Atoms_kde_net_system_tray_windows_set(PyObject
*self
, PyObject
*args
) {
4345 PyObject
*resultobj
;
4346 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
4348 PyObject
* obj0
= 0 ;
4349 PyObject
* obj1
= 0 ;
4351 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_kde_net_system_tray_windows_set",&obj0
,&obj1
)) goto fail
;
4352 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4353 arg2
= (Atom
) PyInt_AsLong(obj1
);
4354 if (PyErr_Occurred()) SWIG_fail
;
4355 if (arg1
) (arg1
)->kde_net_system_tray_windows
= arg2
;
4357 Py_INCREF(Py_None
); resultobj
= Py_None
;
4364 static PyObject
*_wrap_Atoms_kde_net_system_tray_windows_get(PyObject
*self
, PyObject
*args
) {
4365 PyObject
*resultobj
;
4366 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
4368 PyObject
* obj0
= 0 ;
4370 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_kde_net_system_tray_windows_get",&obj0
)) goto fail
;
4371 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4372 result
= (Atom
) ((arg1
)->kde_net_system_tray_windows
);
4374 resultobj
= PyInt_FromLong((long)result
);
4381 static PyObject
*_wrap_Atoms_kde_net_wm_system_tray_window_for_set(PyObject
*self
, PyObject
*args
) {
4382 PyObject
*resultobj
;
4383 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
4385 PyObject
* obj0
= 0 ;
4386 PyObject
* obj1
= 0 ;
4388 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_kde_net_wm_system_tray_window_for_set",&obj0
,&obj1
)) goto fail
;
4389 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4390 arg2
= (Atom
) PyInt_AsLong(obj1
);
4391 if (PyErr_Occurred()) SWIG_fail
;
4392 if (arg1
) (arg1
)->kde_net_wm_system_tray_window_for
= arg2
;
4394 Py_INCREF(Py_None
); resultobj
= Py_None
;
4401 static PyObject
*_wrap_Atoms_kde_net_wm_system_tray_window_for_get(PyObject
*self
, PyObject
*args
) {
4402 PyObject
*resultobj
;
4403 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
4405 PyObject
* obj0
= 0 ;
4407 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_kde_net_wm_system_tray_window_for_get",&obj0
)) goto fail
;
4408 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4409 result
= (Atom
) ((arg1
)->kde_net_wm_system_tray_window_for
);
4411 resultobj
= PyInt_FromLong((long)result
);
4418 static PyObject
*_wrap_Atoms_kde_net_wm_window_type_override_set(PyObject
*self
, PyObject
*args
) {
4419 PyObject
*resultobj
;
4420 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
4422 PyObject
* obj0
= 0 ;
4423 PyObject
* obj1
= 0 ;
4425 if(!PyArg_ParseTuple(args
,(char *)"OO:Atoms_kde_net_wm_window_type_override_set",&obj0
,&obj1
)) goto fail
;
4426 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4427 arg2
= (Atom
) PyInt_AsLong(obj1
);
4428 if (PyErr_Occurred()) SWIG_fail
;
4429 if (arg1
) (arg1
)->kde_net_wm_window_type_override
= arg2
;
4431 Py_INCREF(Py_None
); resultobj
= Py_None
;
4438 static PyObject
*_wrap_Atoms_kde_net_wm_window_type_override_get(PyObject
*self
, PyObject
*args
) {
4439 PyObject
*resultobj
;
4440 otk::Atoms
*arg1
= (otk::Atoms
*) 0 ;
4442 PyObject
* obj0
= 0 ;
4444 if(!PyArg_ParseTuple(args
,(char *)"O:Atoms_kde_net_wm_window_type_override_get",&obj0
)) goto fail
;
4445 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Atoms
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4446 result
= (Atom
) ((arg1
)->kde_net_wm_window_type_override
);
4448 resultobj
= PyInt_FromLong((long)result
);
4455 static PyObject
* Atoms_swigregister(PyObject
*self
, PyObject
*args
) {
4457 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
4458 SWIG_TypeClientData(SWIGTYPE_p_otk__Atoms
, obj
);
4460 return Py_BuildValue((char *)"");
4462 static PyObject
*_wrap_Property_initialize(PyObject
*self
, PyObject
*args
) {
4463 PyObject
*resultobj
;
4465 if(!PyArg_ParseTuple(args
,(char *)":Property_initialize")) goto fail
;
4466 otk::Property::initialize();
4468 Py_INCREF(Py_None
); resultobj
= Py_None
;
4475 static PyObject
*_wrap_Property_set__SWIG_0(PyObject
*self
, PyObject
*args
) {
4476 PyObject
*resultobj
;
4480 unsigned long arg4
;
4481 PyObject
* obj0
= 0 ;
4482 PyObject
* obj1
= 0 ;
4483 PyObject
* obj2
= 0 ;
4484 PyObject
* obj3
= 0 ;
4486 if(!PyArg_ParseTuple(args
,(char *)"OOOO:Property_set",&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
4487 arg1
= (Window
) PyInt_AsLong(obj0
);
4488 if (PyErr_Occurred()) SWIG_fail
;
4489 arg2
= (Atom
) PyInt_AsLong(obj1
);
4490 if (PyErr_Occurred()) SWIG_fail
;
4491 arg3
= (Atom
) PyInt_AsLong(obj2
);
4492 if (PyErr_Occurred()) SWIG_fail
;
4493 arg4
= (unsigned long) PyInt_AsLong(obj3
);
4494 if (PyErr_Occurred()) SWIG_fail
;
4495 otk::Property::set(arg1
,arg2
,arg3
,arg4
);
4497 Py_INCREF(Py_None
); resultobj
= Py_None
;
4504 static PyObject
*_wrap_Property_set__SWIG_1(PyObject
*self
, PyObject
*args
) {
4505 PyObject
*resultobj
;
4509 unsigned long *arg4
;
4511 PyObject
* obj0
= 0 ;
4512 PyObject
* obj1
= 0 ;
4513 PyObject
* obj2
= 0 ;
4514 PyObject
* obj3
= 0 ;
4516 if(!PyArg_ParseTuple(args
,(char *)"OOOOi:Property_set",&obj0
,&obj1
,&obj2
,&obj3
,&arg5
)) goto fail
;
4517 arg1
= (Window
) PyInt_AsLong(obj0
);
4518 if (PyErr_Occurred()) SWIG_fail
;
4519 arg2
= (Atom
) PyInt_AsLong(obj1
);
4520 if (PyErr_Occurred()) SWIG_fail
;
4521 arg3
= (Atom
) PyInt_AsLong(obj2
);
4522 if (PyErr_Occurred()) SWIG_fail
;
4523 if ((SWIG_ConvertPtr(obj3
,(void **) &arg4
, SWIGTYPE_p_unsigned_long
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4524 otk::Property::set(arg1
,arg2
,arg3
,arg4
,arg5
);
4526 Py_INCREF(Py_None
); resultobj
= Py_None
;
4533 static PyObject
*_wrap_Property_set__SWIG_2(PyObject
*self
, PyObject
*args
) {
4534 PyObject
*resultobj
;
4538 otk::ustring
*arg4
= 0 ;
4539 otk::ustring temp4
;
4540 PyObject
* obj0
= 0 ;
4541 PyObject
* obj1
= 0 ;
4542 PyObject
* obj3
= 0 ;
4544 if(!PyArg_ParseTuple(args
,(char *)"OOiO:Property_set",&obj0
,&obj1
,&arg3
,&obj3
)) goto fail
;
4545 arg1
= (Window
) PyInt_AsLong(obj0
);
4546 if (PyErr_Occurred()) SWIG_fail
;
4547 arg2
= (Atom
) PyInt_AsLong(obj1
);
4548 if (PyErr_Occurred()) SWIG_fail
;
4550 if (PyString_Check(obj3
)) {
4551 temp4
= otk::ustring(PyString_AsString(obj3
));
4554 SWIG_exception(SWIG_TypeError
, "ustring expected");
4557 otk::Property::set(arg1
,arg2
,(otk::Property::StringType
)arg3
,(otk::ustring
const &)*arg4
);
4559 Py_INCREF(Py_None
); resultobj
= Py_None
;
4566 static PyObject
*_wrap_Property_set__SWIG_3(PyObject
*self
, PyObject
*args
) {
4567 PyObject
*resultobj
;
4571 otk::Property::StringVect
*arg4
= 0 ;
4572 PyObject
* obj0
= 0 ;
4573 PyObject
* obj1
= 0 ;
4574 PyObject
* obj3
= 0 ;
4576 if(!PyArg_ParseTuple(args
,(char *)"OOiO:Property_set",&obj0
,&obj1
,&arg3
,&obj3
)) goto fail
;
4577 arg1
= (Window
) PyInt_AsLong(obj0
);
4578 if (PyErr_Occurred()) SWIG_fail
;
4579 arg2
= (Atom
) PyInt_AsLong(obj1
);
4580 if (PyErr_Occurred()) SWIG_fail
;
4581 if ((SWIG_ConvertPtr(obj3
,(void **) &arg4
, SWIGTYPE_p_otk__Property__StringVect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4583 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
4585 otk::Property::set(arg1
,arg2
,(otk::Property::StringType
)arg3
,(otk::Property::StringVect
const &)*arg4
);
4587 Py_INCREF(Py_None
); resultobj
= Py_None
;
4594 static PyObject
*_wrap_Property_set(PyObject
*self
, PyObject
*args
) {
4599 argc
= PyObject_Length(args
);
4600 for (ii
= 0; (ii
< argc
) && (ii
< 5); ii
++) {
4601 argv
[ii
] = PyTuple_GetItem(args
,ii
);
4606 _v
= (PyInt_Check(argv
[0]) || PyLong_Check(argv
[0])) ? 1 : 0;
4610 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
4614 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
4619 if (SWIG_ConvertPtr(argv
[3], (void **) &ptr
, SWIGTYPE_p_otk__Property__StringVect
, 0) == -1) {
4627 return _wrap_Property_set__SWIG_3(self
,args
);
4636 _v
= (PyInt_Check(argv
[0]) || PyLong_Check(argv
[0])) ? 1 : 0;
4640 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
4644 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
4648 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
4651 return _wrap_Property_set__SWIG_0(self
,args
);
4660 _v
= (PyInt_Check(argv
[0]) || PyLong_Check(argv
[0])) ? 1 : 0;
4664 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
4668 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
4672 _v
= PyString_Check(argv
[3]) ? 1 : 0;
4675 return _wrap_Property_set__SWIG_2(self
,args
);
4684 _v
= (PyInt_Check(argv
[0]) || PyLong_Check(argv
[0])) ? 1 : 0;
4688 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
4692 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
4697 if (SWIG_ConvertPtr(argv
[3], (void **) &ptr
, SWIGTYPE_p_unsigned_long
, 0) == -1) {
4706 _v
= (PyInt_Check(argv
[4]) || PyLong_Check(argv
[4])) ? 1 : 0;
4709 return _wrap_Property_set__SWIG_1(self
,args
);
4717 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'Property_set'");
4722 static PyObject
*_wrap_Property_get__SWIG_0(PyObject
*self
, PyObject
*args
) {
4723 PyObject
*resultobj
;
4727 unsigned long *arg4
= (unsigned long *) 0 ;
4728 unsigned long **arg5
= (unsigned long **) 0 ;
4730 PyObject
* obj0
= 0 ;
4731 PyObject
* obj1
= 0 ;
4732 PyObject
* obj2
= 0 ;
4733 PyObject
* obj3
= 0 ;
4734 PyObject
* obj4
= 0 ;
4736 if(!PyArg_ParseTuple(args
,(char *)"OOOOO:Property_get",&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
;
4737 arg1
= (Window
) PyInt_AsLong(obj0
);
4738 if (PyErr_Occurred()) SWIG_fail
;
4739 arg2
= (Atom
) PyInt_AsLong(obj1
);
4740 if (PyErr_Occurred()) SWIG_fail
;
4741 arg3
= (Atom
) PyInt_AsLong(obj2
);
4742 if (PyErr_Occurred()) SWIG_fail
;
4743 if ((SWIG_ConvertPtr(obj3
,(void **) &arg4
, SWIGTYPE_p_unsigned_long
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4744 if ((SWIG_ConvertPtr(obj4
,(void **) &arg5
, SWIGTYPE_p_p_unsigned_long
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4745 result
= (bool)otk::Property::get(arg1
,arg2
,arg3
,arg4
,arg5
);
4747 resultobj
= PyInt_FromLong((long)result
);
4754 static PyObject
*_wrap_Property_get__SWIG_1(PyObject
*self
, PyObject
*args
) {
4755 PyObject
*resultobj
;
4759 unsigned long *arg4
= (unsigned long *) 0 ;
4761 PyObject
* obj0
= 0 ;
4762 PyObject
* obj1
= 0 ;
4763 PyObject
* obj2
= 0 ;
4764 PyObject
* obj3
= 0 ;
4766 if(!PyArg_ParseTuple(args
,(char *)"OOOO:Property_get",&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
;
4767 arg1
= (Window
) PyInt_AsLong(obj0
);
4768 if (PyErr_Occurred()) SWIG_fail
;
4769 arg2
= (Atom
) PyInt_AsLong(obj1
);
4770 if (PyErr_Occurred()) SWIG_fail
;
4771 arg3
= (Atom
) PyInt_AsLong(obj2
);
4772 if (PyErr_Occurred()) SWIG_fail
;
4773 if ((SWIG_ConvertPtr(obj3
,(void **) &arg4
, SWIGTYPE_p_unsigned_long
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4774 result
= (bool)otk::Property::get(arg1
,arg2
,arg3
,arg4
);
4776 resultobj
= PyInt_FromLong((long)result
);
4783 static PyObject
*_wrap_Property_get__SWIG_2(PyObject
*self
, PyObject
*args
) {
4784 PyObject
*resultobj
;
4788 otk::ustring
*arg4
= (otk::ustring
*) 0 ;
4790 PyObject
* obj0
= 0 ;
4791 PyObject
* obj1
= 0 ;
4792 PyObject
* obj3
= 0 ;
4794 if(!PyArg_ParseTuple(args
,(char *)"OOiO:Property_get",&obj0
,&obj1
,&arg3
,&obj3
)) goto fail
;
4795 arg1
= (Window
) PyInt_AsLong(obj0
);
4796 if (PyErr_Occurred()) SWIG_fail
;
4797 arg2
= (Atom
) PyInt_AsLong(obj1
);
4798 if (PyErr_Occurred()) SWIG_fail
;
4799 if ((SWIG_ConvertPtr(obj3
,(void **) &arg4
, SWIGTYPE_p_otk__ustring
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4800 result
= (bool)otk::Property::get(arg1
,arg2
,(otk::Property::StringType
)arg3
,arg4
);
4802 resultobj
= PyInt_FromLong((long)result
);
4809 static PyObject
*_wrap_Property_get__SWIG_3(PyObject
*self
, PyObject
*args
) {
4810 PyObject
*resultobj
;
4814 unsigned long *arg4
= (unsigned long *) 0 ;
4815 otk::Property::StringVect
*arg5
= (otk::Property::StringVect
*) 0 ;
4817 PyObject
* obj0
= 0 ;
4818 PyObject
* obj1
= 0 ;
4819 PyObject
* obj3
= 0 ;
4820 PyObject
* obj4
= 0 ;
4822 if(!PyArg_ParseTuple(args
,(char *)"OOiOO:Property_get",&obj0
,&obj1
,&arg3
,&obj3
,&obj4
)) goto fail
;
4823 arg1
= (Window
) PyInt_AsLong(obj0
);
4824 if (PyErr_Occurred()) SWIG_fail
;
4825 arg2
= (Atom
) PyInt_AsLong(obj1
);
4826 if (PyErr_Occurred()) SWIG_fail
;
4827 if ((SWIG_ConvertPtr(obj3
,(void **) &arg4
, SWIGTYPE_p_unsigned_long
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4828 if ((SWIG_ConvertPtr(obj4
,(void **) &arg5
, SWIGTYPE_p_otk__Property__StringVect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
4829 result
= (bool)otk::Property::get(arg1
,arg2
,(otk::Property::StringType
)arg3
,arg4
,arg5
);
4831 resultobj
= PyInt_FromLong((long)result
);
4838 static PyObject
*_wrap_Property_get(PyObject
*self
, PyObject
*args
) {
4843 argc
= PyObject_Length(args
);
4844 for (ii
= 0; (ii
< argc
) && (ii
< 5); ii
++) {
4845 argv
[ii
] = PyTuple_GetItem(args
,ii
);
4850 _v
= (PyInt_Check(argv
[0]) || PyLong_Check(argv
[0])) ? 1 : 0;
4854 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
4858 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
4863 if (SWIG_ConvertPtr(argv
[3], (void **) &ptr
, SWIGTYPE_p_unsigned_long
, 0) == -1) {
4871 return _wrap_Property_get__SWIG_1(self
,args
);
4880 _v
= (PyInt_Check(argv
[0]) || PyLong_Check(argv
[0])) ? 1 : 0;
4884 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
4888 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
4893 if (SWIG_ConvertPtr(argv
[3], (void **) &ptr
, SWIGTYPE_p_otk__ustring
, 0) == -1) {
4901 return _wrap_Property_get__SWIG_2(self
,args
);
4910 _v
= (PyInt_Check(argv
[0]) || PyLong_Check(argv
[0])) ? 1 : 0;
4914 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
4918 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
4923 if (SWIG_ConvertPtr(argv
[3], (void **) &ptr
, SWIGTYPE_p_unsigned_long
, 0) == -1) {
4933 if (SWIG_ConvertPtr(argv
[4], (void **) &ptr
, SWIGTYPE_p_p_unsigned_long
, 0) == -1) {
4941 return _wrap_Property_get__SWIG_0(self
,args
);
4951 _v
= (PyInt_Check(argv
[0]) || PyLong_Check(argv
[0])) ? 1 : 0;
4955 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
4959 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
4964 if (SWIG_ConvertPtr(argv
[3], (void **) &ptr
, SWIGTYPE_p_unsigned_long
, 0) == -1) {
4974 if (SWIG_ConvertPtr(argv
[4], (void **) &ptr
, SWIGTYPE_p_otk__Property__StringVect
, 0) == -1) {
4982 return _wrap_Property_get__SWIG_3(self
,args
);
4990 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'Property_get'");
4995 static PyObject
*_wrap_Property_erase(PyObject
*self
, PyObject
*args
) {
4996 PyObject
*resultobj
;
4999 PyObject
* obj0
= 0 ;
5000 PyObject
* obj1
= 0 ;
5002 if(!PyArg_ParseTuple(args
,(char *)"OO:Property_erase",&obj0
,&obj1
)) goto fail
;
5003 arg1
= (Window
) PyInt_AsLong(obj0
);
5004 if (PyErr_Occurred()) SWIG_fail
;
5005 arg2
= (Atom
) PyInt_AsLong(obj1
);
5006 if (PyErr_Occurred()) SWIG_fail
;
5007 otk::Property::erase(arg1
,arg2
);
5009 Py_INCREF(Py_None
); resultobj
= Py_None
;
5016 static PyObject
* Property_swigregister(PyObject
*self
, PyObject
*args
) {
5018 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
5019 SWIG_TypeClientData(SWIGTYPE_p_otk__Property
, obj
);
5021 return Py_BuildValue((char *)"");
5023 static PyObject
*_wrap_new_Rect__SWIG_0(PyObject
*self
, PyObject
*args
) {
5024 PyObject
*resultobj
;
5027 if(!PyArg_ParseTuple(args
,(char *)":new_Rect")) goto fail
;
5028 result
= (otk::Rect
*)new otk::Rect();
5030 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Rect
, 1);
5037 static PyObject
*_wrap_new_Rect__SWIG_1(PyObject
*self
, PyObject
*args
) {
5038 PyObject
*resultobj
;
5045 if(!PyArg_ParseTuple(args
,(char *)"iiii:new_Rect",&arg1
,&arg2
,&arg3
,&arg4
)) goto fail
;
5046 result
= (otk::Rect
*)new otk::Rect(arg1
,arg2
,arg3
,arg4
);
5048 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Rect
, 1);
5055 static PyObject
*_wrap_new_Rect__SWIG_2(PyObject
*self
, PyObject
*args
) {
5056 PyObject
*resultobj
;
5057 otk::Point
*arg1
= 0 ;
5058 otk::Point
*arg2
= 0 ;
5060 PyObject
* obj0
= 0 ;
5061 PyObject
* obj1
= 0 ;
5063 if(!PyArg_ParseTuple(args
,(char *)"OO:new_Rect",&obj0
,&obj1
)) goto fail
;
5064 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5066 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
5068 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5070 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
5072 result
= (otk::Rect
*)new otk::Rect((otk::Point
const &)*arg1
,(otk::Point
const &)*arg2
);
5074 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Rect
, 1);
5081 static PyObject
*_wrap_new_Rect__SWIG_3(PyObject
*self
, PyObject
*args
) {
5082 PyObject
*resultobj
;
5083 otk::Rect
*arg1
= 0 ;
5085 PyObject
* obj0
= 0 ;
5087 if(!PyArg_ParseTuple(args
,(char *)"O:new_Rect",&obj0
)) goto fail
;
5088 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5090 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
5092 result
= (otk::Rect
*)new otk::Rect((otk::Rect
const &)*arg1
);
5094 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Rect
, 1);
5101 static PyObject
*_wrap_new_Rect__SWIG_4(PyObject
*self
, PyObject
*args
) {
5102 PyObject
*resultobj
;
5103 XRectangle
*arg1
= 0 ;
5105 PyObject
* obj0
= 0 ;
5107 if(!PyArg_ParseTuple(args
,(char *)"O:new_Rect",&obj0
)) goto fail
;
5108 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_XRectangle
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5110 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
5112 result
= (otk::Rect
*)new otk::Rect((XRectangle
const &)*arg1
);
5114 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Rect
, 1);
5121 static PyObject
*_wrap_new_Rect(PyObject
*self
, PyObject
*args
) {
5126 argc
= PyObject_Length(args
);
5127 for (ii
= 0; (ii
< argc
) && (ii
< 4); ii
++) {
5128 argv
[ii
] = PyTuple_GetItem(args
,ii
);
5131 return _wrap_new_Rect__SWIG_0(self
,args
);
5137 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
5145 return _wrap_new_Rect__SWIG_3(self
,args
);
5152 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_XRectangle
, 0) == -1) {
5160 return _wrap_new_Rect__SWIG_4(self
,args
);
5167 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Point
, 0) == -1) {
5177 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_otk__Point
, 0) == -1) {
5185 return _wrap_new_Rect__SWIG_2(self
,args
);
5192 _v
= (PyInt_Check(argv
[0]) || PyLong_Check(argv
[0])) ? 1 : 0;
5196 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
5200 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
5204 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
5207 return _wrap_new_Rect__SWIG_1(self
,args
);
5214 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'new_Rect'");
5219 static PyObject
*_wrap_Rect_left(PyObject
*self
, PyObject
*args
) {
5220 PyObject
*resultobj
;
5221 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
5223 PyObject
* obj0
= 0 ;
5225 if(!PyArg_ParseTuple(args
,(char *)"O:Rect_left",&obj0
)) goto fail
;
5226 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5227 result
= (int)((otk::Rect
const *)arg1
)->left();
5229 resultobj
= PyInt_FromLong((long)result
);
5236 static PyObject
*_wrap_Rect_top(PyObject
*self
, PyObject
*args
) {
5237 PyObject
*resultobj
;
5238 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
5240 PyObject
* obj0
= 0 ;
5242 if(!PyArg_ParseTuple(args
,(char *)"O:Rect_top",&obj0
)) goto fail
;
5243 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5244 result
= (int)((otk::Rect
const *)arg1
)->top();
5246 resultobj
= PyInt_FromLong((long)result
);
5253 static PyObject
*_wrap_Rect_right(PyObject
*self
, PyObject
*args
) {
5254 PyObject
*resultobj
;
5255 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
5257 PyObject
* obj0
= 0 ;
5259 if(!PyArg_ParseTuple(args
,(char *)"O:Rect_right",&obj0
)) goto fail
;
5260 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5261 result
= (int)((otk::Rect
const *)arg1
)->right();
5263 resultobj
= PyInt_FromLong((long)result
);
5270 static PyObject
*_wrap_Rect_bottom(PyObject
*self
, PyObject
*args
) {
5271 PyObject
*resultobj
;
5272 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
5274 PyObject
* obj0
= 0 ;
5276 if(!PyArg_ParseTuple(args
,(char *)"O:Rect_bottom",&obj0
)) goto fail
;
5277 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5278 result
= (int)((otk::Rect
const *)arg1
)->bottom();
5280 resultobj
= PyInt_FromLong((long)result
);
5287 static PyObject
*_wrap_Rect_x(PyObject
*self
, PyObject
*args
) {
5288 PyObject
*resultobj
;
5289 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
5291 PyObject
* obj0
= 0 ;
5293 if(!PyArg_ParseTuple(args
,(char *)"O:Rect_x",&obj0
)) goto fail
;
5294 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5295 result
= (int)((otk::Rect
const *)arg1
)->x();
5297 resultobj
= PyInt_FromLong((long)result
);
5304 static PyObject
*_wrap_Rect_y(PyObject
*self
, PyObject
*args
) {
5305 PyObject
*resultobj
;
5306 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
5308 PyObject
* obj0
= 0 ;
5310 if(!PyArg_ParseTuple(args
,(char *)"O:Rect_y",&obj0
)) goto fail
;
5311 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5312 result
= (int)((otk::Rect
const *)arg1
)->y();
5314 resultobj
= PyInt_FromLong((long)result
);
5321 static PyObject
*_wrap_Rect_location(PyObject
*self
, PyObject
*args
) {
5322 PyObject
*resultobj
;
5323 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
5325 PyObject
* obj0
= 0 ;
5327 if(!PyArg_ParseTuple(args
,(char *)"O:Rect_location",&obj0
)) goto fail
;
5328 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5329 result
= ((otk::Rect
const *)arg1
)->location();
5332 otk::Point
* resultptr
;
5333 resultptr
= new otk::Point((otk::Point
&) result
);
5334 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_otk__Point
, 1);
5342 static PyObject
*_wrap_Rect_setX(PyObject
*self
, PyObject
*args
) {
5343 PyObject
*resultobj
;
5344 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
5346 PyObject
* obj0
= 0 ;
5348 if(!PyArg_ParseTuple(args
,(char *)"Oi:Rect_setX",&obj0
,&arg2
)) goto fail
;
5349 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5352 Py_INCREF(Py_None
); resultobj
= Py_None
;
5359 static PyObject
*_wrap_Rect_setY(PyObject
*self
, PyObject
*args
) {
5360 PyObject
*resultobj
;
5361 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
5363 PyObject
* obj0
= 0 ;
5365 if(!PyArg_ParseTuple(args
,(char *)"Oi:Rect_setY",&obj0
,&arg2
)) goto fail
;
5366 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5369 Py_INCREF(Py_None
); resultobj
= Py_None
;
5376 static PyObject
*_wrap_Rect_setPos__SWIG_0(PyObject
*self
, PyObject
*args
) {
5377 PyObject
*resultobj
;
5378 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
5381 PyObject
* obj0
= 0 ;
5383 if(!PyArg_ParseTuple(args
,(char *)"Oii:Rect_setPos",&obj0
,&arg2
,&arg3
)) goto fail
;
5384 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5385 (arg1
)->setPos(arg2
,arg3
);
5387 Py_INCREF(Py_None
); resultobj
= Py_None
;
5394 static PyObject
*_wrap_Rect_setPos__SWIG_1(PyObject
*self
, PyObject
*args
) {
5395 PyObject
*resultobj
;
5396 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
5397 otk::Point
*arg2
= 0 ;
5398 PyObject
* obj0
= 0 ;
5399 PyObject
* obj1
= 0 ;
5401 if(!PyArg_ParseTuple(args
,(char *)"OO:Rect_setPos",&obj0
,&obj1
)) goto fail
;
5402 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5403 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5405 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
5407 (arg1
)->setPos((otk::Point
const &)*arg2
);
5409 Py_INCREF(Py_None
); resultobj
= Py_None
;
5416 static PyObject
*_wrap_Rect_setPos(PyObject
*self
, PyObject
*args
) {
5421 argc
= PyObject_Length(args
);
5422 for (ii
= 0; (ii
< argc
) && (ii
< 3); ii
++) {
5423 argv
[ii
] = PyTuple_GetItem(args
,ii
);
5429 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
5439 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_otk__Point
, 0) == -1) {
5447 return _wrap_Rect_setPos__SWIG_1(self
,args
);
5455 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
5464 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
5468 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
5471 return _wrap_Rect_setPos__SWIG_0(self
,args
);
5477 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'Rect_setPos'");
5482 static PyObject
*_wrap_Rect_width(PyObject
*self
, PyObject
*args
) {
5483 PyObject
*resultobj
;
5484 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
5486 PyObject
* obj0
= 0 ;
5488 if(!PyArg_ParseTuple(args
,(char *)"O:Rect_width",&obj0
)) goto fail
;
5489 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5490 result
= (int)((otk::Rect
const *)arg1
)->width();
5492 resultobj
= PyInt_FromLong((long)result
);
5499 static PyObject
*_wrap_Rect_height(PyObject
*self
, PyObject
*args
) {
5500 PyObject
*resultobj
;
5501 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
5503 PyObject
* obj0
= 0 ;
5505 if(!PyArg_ParseTuple(args
,(char *)"O:Rect_height",&obj0
)) goto fail
;
5506 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5507 result
= (int)((otk::Rect
const *)arg1
)->height();
5509 resultobj
= PyInt_FromLong((long)result
);
5516 static PyObject
*_wrap_Rect_size(PyObject
*self
, PyObject
*args
) {
5517 PyObject
*resultobj
;
5518 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
5520 PyObject
* obj0
= 0 ;
5522 if(!PyArg_ParseTuple(args
,(char *)"O:Rect_size",&obj0
)) goto fail
;
5523 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5524 result
= ((otk::Rect
const *)arg1
)->size();
5527 otk::Point
* resultptr
;
5528 resultptr
= new otk::Point((otk::Point
&) result
);
5529 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_otk__Point
, 1);
5537 static PyObject
*_wrap_Rect_setWidth(PyObject
*self
, PyObject
*args
) {
5538 PyObject
*resultobj
;
5539 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
5541 PyObject
* obj0
= 0 ;
5543 if(!PyArg_ParseTuple(args
,(char *)"Oi:Rect_setWidth",&obj0
,&arg2
)) goto fail
;
5544 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5545 (arg1
)->setWidth(arg2
);
5547 Py_INCREF(Py_None
); resultobj
= Py_None
;
5554 static PyObject
*_wrap_Rect_setHeight(PyObject
*self
, PyObject
*args
) {
5555 PyObject
*resultobj
;
5556 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
5558 PyObject
* obj0
= 0 ;
5560 if(!PyArg_ParseTuple(args
,(char *)"Oi:Rect_setHeight",&obj0
,&arg2
)) goto fail
;
5561 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5562 (arg1
)->setHeight(arg2
);
5564 Py_INCREF(Py_None
); resultobj
= Py_None
;
5571 static PyObject
*_wrap_Rect_setSize__SWIG_0(PyObject
*self
, PyObject
*args
) {
5572 PyObject
*resultobj
;
5573 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
5576 PyObject
* obj0
= 0 ;
5578 if(!PyArg_ParseTuple(args
,(char *)"Oii:Rect_setSize",&obj0
,&arg2
,&arg3
)) goto fail
;
5579 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5580 (arg1
)->setSize(arg2
,arg3
);
5582 Py_INCREF(Py_None
); resultobj
= Py_None
;
5589 static PyObject
*_wrap_Rect_setSize__SWIG_1(PyObject
*self
, PyObject
*args
) {
5590 PyObject
*resultobj
;
5591 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
5592 otk::Point
*arg2
= 0 ;
5593 PyObject
* obj0
= 0 ;
5594 PyObject
* obj1
= 0 ;
5596 if(!PyArg_ParseTuple(args
,(char *)"OO:Rect_setSize",&obj0
,&obj1
)) goto fail
;
5597 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5598 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5600 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
5602 (arg1
)->setSize((otk::Point
const &)*arg2
);
5604 Py_INCREF(Py_None
); resultobj
= Py_None
;
5611 static PyObject
*_wrap_Rect_setSize(PyObject
*self
, PyObject
*args
) {
5616 argc
= PyObject_Length(args
);
5617 for (ii
= 0; (ii
< argc
) && (ii
< 3); ii
++) {
5618 argv
[ii
] = PyTuple_GetItem(args
,ii
);
5624 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
5634 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_otk__Point
, 0) == -1) {
5642 return _wrap_Rect_setSize__SWIG_1(self
,args
);
5650 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
5659 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
5663 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
5666 return _wrap_Rect_setSize__SWIG_0(self
,args
);
5672 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'Rect_setSize'");
5677 static PyObject
*_wrap_Rect_setRect__SWIG_0(PyObject
*self
, PyObject
*args
) {
5678 PyObject
*resultobj
;
5679 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
5684 PyObject
* obj0
= 0 ;
5686 if(!PyArg_ParseTuple(args
,(char *)"Oiiii:Rect_setRect",&obj0
,&arg2
,&arg3
,&arg4
,&arg5
)) goto fail
;
5687 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5688 (arg1
)->setRect(arg2
,arg3
,arg4
,arg5
);
5690 Py_INCREF(Py_None
); resultobj
= Py_None
;
5697 static PyObject
*_wrap_Rect_setRect__SWIG_1(PyObject
*self
, PyObject
*args
) {
5698 PyObject
*resultobj
;
5699 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
5700 otk::Point
*arg2
= 0 ;
5701 otk::Point
*arg3
= 0 ;
5702 PyObject
* obj0
= 0 ;
5703 PyObject
* obj1
= 0 ;
5704 PyObject
* obj2
= 0 ;
5706 if(!PyArg_ParseTuple(args
,(char *)"OOO:Rect_setRect",&obj0
,&obj1
,&obj2
)) goto fail
;
5707 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5708 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5710 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
5712 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5714 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
5716 (arg1
)->setRect((otk::Point
const &)*arg2
,(otk::Point
const &)*arg3
);
5718 Py_INCREF(Py_None
); resultobj
= Py_None
;
5725 static PyObject
*_wrap_Rect_setRect(PyObject
*self
, PyObject
*args
) {
5730 argc
= PyObject_Length(args
);
5731 for (ii
= 0; (ii
< argc
) && (ii
< 5); ii
++) {
5732 argv
[ii
] = PyTuple_GetItem(args
,ii
);
5738 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
5748 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_otk__Point
, 0) == -1) {
5758 if (SWIG_ConvertPtr(argv
[2], (void **) &ptr
, SWIGTYPE_p_otk__Point
, 0) == -1) {
5766 return _wrap_Rect_setRect__SWIG_1(self
,args
);
5775 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
5784 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
5788 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
5792 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
5796 _v
= (PyInt_Check(argv
[4]) || PyLong_Check(argv
[4])) ? 1 : 0;
5799 return _wrap_Rect_setRect__SWIG_0(self
,args
);
5807 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'Rect_setRect'");
5812 static PyObject
*_wrap_Rect_setCoords__SWIG_0(PyObject
*self
, PyObject
*args
) {
5813 PyObject
*resultobj
;
5814 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
5819 PyObject
* obj0
= 0 ;
5821 if(!PyArg_ParseTuple(args
,(char *)"Oiiii:Rect_setCoords",&obj0
,&arg2
,&arg3
,&arg4
,&arg5
)) goto fail
;
5822 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5823 (arg1
)->setCoords(arg2
,arg3
,arg4
,arg5
);
5825 Py_INCREF(Py_None
); resultobj
= Py_None
;
5832 static PyObject
*_wrap_Rect_setCoords__SWIG_1(PyObject
*self
, PyObject
*args
) {
5833 PyObject
*resultobj
;
5834 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
5835 otk::Point
*arg2
= 0 ;
5836 otk::Point
*arg3
= 0 ;
5837 PyObject
* obj0
= 0 ;
5838 PyObject
* obj1
= 0 ;
5839 PyObject
* obj2
= 0 ;
5841 if(!PyArg_ParseTuple(args
,(char *)"OOO:Rect_setCoords",&obj0
,&obj1
,&obj2
)) goto fail
;
5842 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5843 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5845 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
5847 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5849 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
5851 (arg1
)->setCoords((otk::Point
const &)*arg2
,(otk::Point
const &)*arg3
);
5853 Py_INCREF(Py_None
); resultobj
= Py_None
;
5860 static PyObject
*_wrap_Rect_setCoords(PyObject
*self
, PyObject
*args
) {
5865 argc
= PyObject_Length(args
);
5866 for (ii
= 0; (ii
< argc
) && (ii
< 5); ii
++) {
5867 argv
[ii
] = PyTuple_GetItem(args
,ii
);
5873 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
5883 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_otk__Point
, 0) == -1) {
5893 if (SWIG_ConvertPtr(argv
[2], (void **) &ptr
, SWIGTYPE_p_otk__Point
, 0) == -1) {
5901 return _wrap_Rect_setCoords__SWIG_1(self
,args
);
5910 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
5919 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
5923 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
5927 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
5931 _v
= (PyInt_Check(argv
[4]) || PyLong_Check(argv
[4])) ? 1 : 0;
5934 return _wrap_Rect_setCoords__SWIG_0(self
,args
);
5942 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'Rect_setCoords'");
5947 static PyObject
*_wrap_Rect___eq__(PyObject
*self
, PyObject
*args
) {
5948 PyObject
*resultobj
;
5949 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
5950 otk::Rect
*arg2
= 0 ;
5952 PyObject
* obj0
= 0 ;
5953 PyObject
* obj1
= 0 ;
5955 if(!PyArg_ParseTuple(args
,(char *)"OO:Rect___eq__",&obj0
,&obj1
)) goto fail
;
5956 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5957 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5959 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
5961 result
= (bool)(arg1
)->operator ==((otk::Rect
const &)*arg2
);
5963 resultobj
= PyInt_FromLong((long)result
);
5970 static PyObject
*_wrap_Rect___ne__(PyObject
*self
, PyObject
*args
) {
5971 PyObject
*resultobj
;
5972 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
5973 otk::Rect
*arg2
= 0 ;
5975 PyObject
* obj0
= 0 ;
5976 PyObject
* obj1
= 0 ;
5978 if(!PyArg_ParseTuple(args
,(char *)"OO:Rect___ne__",&obj0
,&obj1
)) goto fail
;
5979 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5980 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
5982 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
5984 result
= (bool)(arg1
)->operator !=((otk::Rect
const &)*arg2
);
5986 resultobj
= PyInt_FromLong((long)result
);
5993 static PyObject
*_wrap_Rect___or__(PyObject
*self
, PyObject
*args
) {
5994 PyObject
*resultobj
;
5995 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
5996 otk::Rect
*arg2
= 0 ;
5998 PyObject
* obj0
= 0 ;
5999 PyObject
* obj1
= 0 ;
6001 if(!PyArg_ParseTuple(args
,(char *)"OO:Rect___or__",&obj0
,&obj1
)) goto fail
;
6002 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6003 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6005 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
6007 result
= ((otk::Rect
const *)arg1
)->operator |((otk::Rect
const &)*arg2
);
6010 otk::Rect
* resultptr
;
6011 resultptr
= new otk::Rect((otk::Rect
&) result
);
6012 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_otk__Rect
, 1);
6020 static PyObject
*_wrap_Rect___and__(PyObject
*self
, PyObject
*args
) {
6021 PyObject
*resultobj
;
6022 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
6023 otk::Rect
*arg2
= 0 ;
6025 PyObject
* obj0
= 0 ;
6026 PyObject
* obj1
= 0 ;
6028 if(!PyArg_ParseTuple(args
,(char *)"OO:Rect___and__",&obj0
,&obj1
)) goto fail
;
6029 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6030 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6032 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
6034 result
= ((otk::Rect
const *)arg1
)->operator &((otk::Rect
const &)*arg2
);
6037 otk::Rect
* resultptr
;
6038 resultptr
= new otk::Rect((otk::Rect
&) result
);
6039 resultobj
= SWIG_NewPointerObj((void *) resultptr
, SWIGTYPE_p_otk__Rect
, 1);
6047 static PyObject
*_wrap_Rect___ior__(PyObject
*self
, PyObject
*args
) {
6048 PyObject
*resultobj
;
6049 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
6050 otk::Rect
*arg2
= 0 ;
6052 PyObject
* obj0
= 0 ;
6053 PyObject
* obj1
= 0 ;
6055 if(!PyArg_ParseTuple(args
,(char *)"OO:Rect___ior__",&obj0
,&obj1
)) goto fail
;
6056 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6057 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6059 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
6062 otk::Rect
&_result_ref
= (arg1
)->operator |=((otk::Rect
const &)*arg2
);
6063 result
= (otk::Rect
*) &_result_ref
;
6066 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Rect
, 0);
6073 static PyObject
*_wrap_Rect___iand__(PyObject
*self
, PyObject
*args
) {
6074 PyObject
*resultobj
;
6075 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
6076 otk::Rect
*arg2
= 0 ;
6078 PyObject
* obj0
= 0 ;
6079 PyObject
* obj1
= 0 ;
6081 if(!PyArg_ParseTuple(args
,(char *)"OO:Rect___iand__",&obj0
,&obj1
)) goto fail
;
6082 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6083 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6085 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
6088 otk::Rect
&_result_ref
= (arg1
)->operator &=((otk::Rect
const &)*arg2
);
6089 result
= (otk::Rect
*) &_result_ref
;
6092 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Rect
, 0);
6099 static PyObject
*_wrap_Rect_valid(PyObject
*self
, PyObject
*args
) {
6100 PyObject
*resultobj
;
6101 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
6103 PyObject
* obj0
= 0 ;
6105 if(!PyArg_ParseTuple(args
,(char *)"O:Rect_valid",&obj0
)) goto fail
;
6106 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6107 result
= (bool)((otk::Rect
const *)arg1
)->valid();
6109 resultobj
= PyInt_FromLong((long)result
);
6116 static PyObject
*_wrap_Rect_intersects(PyObject
*self
, PyObject
*args
) {
6117 PyObject
*resultobj
;
6118 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
6119 otk::Rect
*arg2
= 0 ;
6121 PyObject
* obj0
= 0 ;
6122 PyObject
* obj1
= 0 ;
6124 if(!PyArg_ParseTuple(args
,(char *)"OO:Rect_intersects",&obj0
,&obj1
)) goto fail
;
6125 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6126 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6128 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
6130 result
= (bool)((otk::Rect
const *)arg1
)->intersects((otk::Rect
const &)*arg2
);
6132 resultobj
= PyInt_FromLong((long)result
);
6139 static PyObject
*_wrap_Rect_contains__SWIG_0(PyObject
*self
, PyObject
*args
) {
6140 PyObject
*resultobj
;
6141 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
6145 PyObject
* obj0
= 0 ;
6147 if(!PyArg_ParseTuple(args
,(char *)"Oii:Rect_contains",&obj0
,&arg2
,&arg3
)) goto fail
;
6148 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6149 result
= (bool)((otk::Rect
const *)arg1
)->contains(arg2
,arg3
);
6151 resultobj
= PyInt_FromLong((long)result
);
6158 static PyObject
*_wrap_Rect_contains__SWIG_1(PyObject
*self
, PyObject
*args
) {
6159 PyObject
*resultobj
;
6160 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
6161 otk::Point
*arg2
= 0 ;
6163 PyObject
* obj0
= 0 ;
6164 PyObject
* obj1
= 0 ;
6166 if(!PyArg_ParseTuple(args
,(char *)"OO:Rect_contains",&obj0
,&obj1
)) goto fail
;
6167 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6168 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6170 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
6172 result
= (bool)((otk::Rect
const *)arg1
)->contains((otk::Point
const &)*arg2
);
6174 resultobj
= PyInt_FromLong((long)result
);
6181 static PyObject
*_wrap_Rect_contains__SWIG_2(PyObject
*self
, PyObject
*args
) {
6182 PyObject
*resultobj
;
6183 otk::Rect
*arg1
= (otk::Rect
*) 0 ;
6184 otk::Rect
*arg2
= 0 ;
6186 PyObject
* obj0
= 0 ;
6187 PyObject
* obj1
= 0 ;
6189 if(!PyArg_ParseTuple(args
,(char *)"OO:Rect_contains",&obj0
,&obj1
)) goto fail
;
6190 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6191 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6193 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
6195 result
= (bool)((otk::Rect
const *)arg1
)->contains((otk::Rect
const &)*arg2
);
6197 resultobj
= PyInt_FromLong((long)result
);
6204 static PyObject
*_wrap_Rect_contains(PyObject
*self
, PyObject
*args
) {
6209 argc
= PyObject_Length(args
);
6210 for (ii
= 0; (ii
< argc
) && (ii
< 3); ii
++) {
6211 argv
[ii
] = PyTuple_GetItem(args
,ii
);
6217 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
6227 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_otk__Point
, 0) == -1) {
6235 return _wrap_Rect_contains__SWIG_1(self
,args
);
6243 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
6253 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
6261 return _wrap_Rect_contains__SWIG_2(self
,args
);
6269 if (SWIG_ConvertPtr(argv
[0], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
6278 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
6282 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
6285 return _wrap_Rect_contains__SWIG_0(self
,args
);
6291 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'Rect_contains'");
6296 static PyObject
* Rect_swigregister(PyObject
*self
, PyObject
*args
) {
6298 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
6299 SWIG_TypeClientData(SWIGTYPE_p_otk__Rect
, obj
);
6301 return Py_BuildValue((char *)"");
6303 static PyObject
*_wrap_new_ScreenInfo(PyObject
*self
, PyObject
*args
) {
6304 PyObject
*resultobj
;
6306 otk::ScreenInfo
*result
;
6307 PyObject
* obj0
= 0 ;
6309 if(!PyArg_ParseTuple(args
,(char *)"O:new_ScreenInfo",&obj0
)) goto fail
;
6310 arg1
= (unsigned int) PyInt_AsLong(obj0
);
6311 if (PyErr_Occurred()) SWIG_fail
;
6312 result
= (otk::ScreenInfo
*)new otk::ScreenInfo(arg1
);
6314 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__ScreenInfo
, 1);
6321 static PyObject
*_wrap_ScreenInfo_visual(PyObject
*self
, PyObject
*args
) {
6322 PyObject
*resultobj
;
6323 otk::ScreenInfo
*arg1
= (otk::ScreenInfo
*) 0 ;
6325 PyObject
* obj0
= 0 ;
6327 if(!PyArg_ParseTuple(args
,(char *)"O:ScreenInfo_visual",&obj0
)) goto fail
;
6328 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__ScreenInfo
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6329 result
= (Visual
*)((otk::ScreenInfo
const *)arg1
)->visual();
6331 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_Visual
, 0);
6338 static PyObject
*_wrap_ScreenInfo_rootWindow(PyObject
*self
, PyObject
*args
) {
6339 PyObject
*resultobj
;
6340 otk::ScreenInfo
*arg1
= (otk::ScreenInfo
*) 0 ;
6342 PyObject
* obj0
= 0 ;
6344 if(!PyArg_ParseTuple(args
,(char *)"O:ScreenInfo_rootWindow",&obj0
)) goto fail
;
6345 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__ScreenInfo
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6346 result
= (Window
)((otk::ScreenInfo
const *)arg1
)->rootWindow();
6348 resultobj
= PyInt_FromLong((long)result
);
6355 static PyObject
*_wrap_ScreenInfo_colormap(PyObject
*self
, PyObject
*args
) {
6356 PyObject
*resultobj
;
6357 otk::ScreenInfo
*arg1
= (otk::ScreenInfo
*) 0 ;
6359 PyObject
* obj0
= 0 ;
6361 if(!PyArg_ParseTuple(args
,(char *)"O:ScreenInfo_colormap",&obj0
)) goto fail
;
6362 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__ScreenInfo
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6363 result
= (Colormap
)((otk::ScreenInfo
const *)arg1
)->colormap();
6365 resultobj
= PyInt_FromLong((long)result
);
6372 static PyObject
*_wrap_ScreenInfo_depth(PyObject
*self
, PyObject
*args
) {
6373 PyObject
*resultobj
;
6374 otk::ScreenInfo
*arg1
= (otk::ScreenInfo
*) 0 ;
6376 PyObject
* obj0
= 0 ;
6378 if(!PyArg_ParseTuple(args
,(char *)"O:ScreenInfo_depth",&obj0
)) goto fail
;
6379 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__ScreenInfo
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6380 result
= (int)((otk::ScreenInfo
const *)arg1
)->depth();
6382 resultobj
= PyInt_FromLong((long)result
);
6389 static PyObject
*_wrap_ScreenInfo_screen(PyObject
*self
, PyObject
*args
) {
6390 PyObject
*resultobj
;
6391 otk::ScreenInfo
*arg1
= (otk::ScreenInfo
*) 0 ;
6392 unsigned int result
;
6393 PyObject
* obj0
= 0 ;
6395 if(!PyArg_ParseTuple(args
,(char *)"O:ScreenInfo_screen",&obj0
)) goto fail
;
6396 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__ScreenInfo
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6397 result
= (unsigned int)((otk::ScreenInfo
const *)arg1
)->screen();
6399 resultobj
= PyInt_FromLong((long)result
);
6406 static PyObject
*_wrap_ScreenInfo_rect(PyObject
*self
, PyObject
*args
) {
6407 PyObject
*resultobj
;
6408 otk::ScreenInfo
*arg1
= (otk::ScreenInfo
*) 0 ;
6410 PyObject
* obj0
= 0 ;
6412 if(!PyArg_ParseTuple(args
,(char *)"O:ScreenInfo_rect",&obj0
)) goto fail
;
6413 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__ScreenInfo
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6415 otk::Rect
const &_result_ref
= ((otk::ScreenInfo
const *)arg1
)->rect();
6416 result
= (otk::Rect
*) &_result_ref
;
6419 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Rect
, 0);
6426 static PyObject
*_wrap_ScreenInfo_width(PyObject
*self
, PyObject
*args
) {
6427 PyObject
*resultobj
;
6428 otk::ScreenInfo
*arg1
= (otk::ScreenInfo
*) 0 ;
6429 unsigned int result
;
6430 PyObject
* obj0
= 0 ;
6432 if(!PyArg_ParseTuple(args
,(char *)"O:ScreenInfo_width",&obj0
)) goto fail
;
6433 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__ScreenInfo
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6434 result
= (unsigned int)((otk::ScreenInfo
const *)arg1
)->width();
6436 resultobj
= PyInt_FromLong((long)result
);
6443 static PyObject
*_wrap_ScreenInfo_height(PyObject
*self
, PyObject
*args
) {
6444 PyObject
*resultobj
;
6445 otk::ScreenInfo
*arg1
= (otk::ScreenInfo
*) 0 ;
6446 unsigned int result
;
6447 PyObject
* obj0
= 0 ;
6449 if(!PyArg_ParseTuple(args
,(char *)"O:ScreenInfo_height",&obj0
)) goto fail
;
6450 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__ScreenInfo
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6451 result
= (unsigned int)((otk::ScreenInfo
const *)arg1
)->height();
6453 resultobj
= PyInt_FromLong((long)result
);
6460 static PyObject
*_wrap_ScreenInfo_displayString(PyObject
*self
, PyObject
*args
) {
6461 PyObject
*resultobj
;
6462 otk::ScreenInfo
*arg1
= (otk::ScreenInfo
*) 0 ;
6463 std::string
*result
;
6464 PyObject
* obj0
= 0 ;
6466 if(!PyArg_ParseTuple(args
,(char *)"O:ScreenInfo_displayString",&obj0
)) goto fail
;
6467 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__ScreenInfo
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6469 std::string
const &_result_ref
= ((otk::ScreenInfo
const *)arg1
)->displayString();
6470 result
= (std::string
*) &_result_ref
;
6474 resultobj
= PyString_FromString(result
->c_str());
6482 static PyObject
* ScreenInfo_swigregister(PyObject
*self
, PyObject
*args
) {
6484 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
6485 SWIG_TypeClientData(SWIGTYPE_p_otk__ScreenInfo
, obj
);
6487 return Py_BuildValue((char *)"");
6489 static PyObject
*_wrap_Strut_top_set(PyObject
*self
, PyObject
*args
) {
6490 PyObject
*resultobj
;
6491 otk::Strut
*arg1
= (otk::Strut
*) 0 ;
6493 PyObject
* obj0
= 0 ;
6494 PyObject
* obj1
= 0 ;
6496 if(!PyArg_ParseTuple(args
,(char *)"OO:Strut_top_set",&obj0
,&obj1
)) goto fail
;
6497 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Strut
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6498 arg2
= (unsigned int) PyInt_AsLong(obj1
);
6499 if (PyErr_Occurred()) SWIG_fail
;
6500 if (arg1
) (arg1
)->top
= arg2
;
6502 Py_INCREF(Py_None
); resultobj
= Py_None
;
6509 static PyObject
*_wrap_Strut_top_get(PyObject
*self
, PyObject
*args
) {
6510 PyObject
*resultobj
;
6511 otk::Strut
*arg1
= (otk::Strut
*) 0 ;
6512 unsigned int result
;
6513 PyObject
* obj0
= 0 ;
6515 if(!PyArg_ParseTuple(args
,(char *)"O:Strut_top_get",&obj0
)) goto fail
;
6516 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Strut
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6517 result
= (unsigned int) ((arg1
)->top
);
6519 resultobj
= PyInt_FromLong((long)result
);
6526 static PyObject
*_wrap_Strut_bottom_set(PyObject
*self
, PyObject
*args
) {
6527 PyObject
*resultobj
;
6528 otk::Strut
*arg1
= (otk::Strut
*) 0 ;
6530 PyObject
* obj0
= 0 ;
6531 PyObject
* obj1
= 0 ;
6533 if(!PyArg_ParseTuple(args
,(char *)"OO:Strut_bottom_set",&obj0
,&obj1
)) goto fail
;
6534 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Strut
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6535 arg2
= (unsigned int) PyInt_AsLong(obj1
);
6536 if (PyErr_Occurred()) SWIG_fail
;
6537 if (arg1
) (arg1
)->bottom
= arg2
;
6539 Py_INCREF(Py_None
); resultobj
= Py_None
;
6546 static PyObject
*_wrap_Strut_bottom_get(PyObject
*self
, PyObject
*args
) {
6547 PyObject
*resultobj
;
6548 otk::Strut
*arg1
= (otk::Strut
*) 0 ;
6549 unsigned int result
;
6550 PyObject
* obj0
= 0 ;
6552 if(!PyArg_ParseTuple(args
,(char *)"O:Strut_bottom_get",&obj0
)) goto fail
;
6553 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Strut
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6554 result
= (unsigned int) ((arg1
)->bottom
);
6556 resultobj
= PyInt_FromLong((long)result
);
6563 static PyObject
*_wrap_Strut_left_set(PyObject
*self
, PyObject
*args
) {
6564 PyObject
*resultobj
;
6565 otk::Strut
*arg1
= (otk::Strut
*) 0 ;
6567 PyObject
* obj0
= 0 ;
6568 PyObject
* obj1
= 0 ;
6570 if(!PyArg_ParseTuple(args
,(char *)"OO:Strut_left_set",&obj0
,&obj1
)) goto fail
;
6571 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Strut
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6572 arg2
= (unsigned int) PyInt_AsLong(obj1
);
6573 if (PyErr_Occurred()) SWIG_fail
;
6574 if (arg1
) (arg1
)->left
= arg2
;
6576 Py_INCREF(Py_None
); resultobj
= Py_None
;
6583 static PyObject
*_wrap_Strut_left_get(PyObject
*self
, PyObject
*args
) {
6584 PyObject
*resultobj
;
6585 otk::Strut
*arg1
= (otk::Strut
*) 0 ;
6586 unsigned int result
;
6587 PyObject
* obj0
= 0 ;
6589 if(!PyArg_ParseTuple(args
,(char *)"O:Strut_left_get",&obj0
)) goto fail
;
6590 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Strut
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6591 result
= (unsigned int) ((arg1
)->left
);
6593 resultobj
= PyInt_FromLong((long)result
);
6600 static PyObject
*_wrap_Strut_right_set(PyObject
*self
, PyObject
*args
) {
6601 PyObject
*resultobj
;
6602 otk::Strut
*arg1
= (otk::Strut
*) 0 ;
6604 PyObject
* obj0
= 0 ;
6605 PyObject
* obj1
= 0 ;
6607 if(!PyArg_ParseTuple(args
,(char *)"OO:Strut_right_set",&obj0
,&obj1
)) goto fail
;
6608 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Strut
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6609 arg2
= (unsigned int) PyInt_AsLong(obj1
);
6610 if (PyErr_Occurred()) SWIG_fail
;
6611 if (arg1
) (arg1
)->right
= arg2
;
6613 Py_INCREF(Py_None
); resultobj
= Py_None
;
6620 static PyObject
*_wrap_Strut_right_get(PyObject
*self
, PyObject
*args
) {
6621 PyObject
*resultobj
;
6622 otk::Strut
*arg1
= (otk::Strut
*) 0 ;
6623 unsigned int result
;
6624 PyObject
* obj0
= 0 ;
6626 if(!PyArg_ParseTuple(args
,(char *)"O:Strut_right_get",&obj0
)) goto fail
;
6627 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__Strut
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6628 result
= (unsigned int) ((arg1
)->right
);
6630 resultobj
= PyInt_FromLong((long)result
);
6637 static PyObject
*_wrap_new_Strut__SWIG_0(PyObject
*self
, PyObject
*args
) {
6638 PyObject
*resultobj
;
6641 if(!PyArg_ParseTuple(args
,(char *)":new_Strut")) goto fail
;
6642 result
= (otk::Strut
*)new otk::Strut();
6644 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Strut
, 1);
6651 static PyObject
*_wrap_new_Strut__SWIG_1(PyObject
*self
, PyObject
*args
) {
6652 PyObject
*resultobj
;
6659 if(!PyArg_ParseTuple(args
,(char *)"iiii:new_Strut",&arg1
,&arg2
,&arg3
,&arg4
)) goto fail
;
6660 result
= (otk::Strut
*)new otk::Strut(arg1
,arg2
,arg3
,arg4
);
6662 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Strut
, 1);
6669 static PyObject
*_wrap_new_Strut(PyObject
*self
, PyObject
*args
) {
6674 argc
= PyObject_Length(args
);
6675 for (ii
= 0; (ii
< argc
) && (ii
< 4); ii
++) {
6676 argv
[ii
] = PyTuple_GetItem(args
,ii
);
6679 return _wrap_new_Strut__SWIG_0(self
,args
);
6684 _v
= (PyInt_Check(argv
[0]) || PyLong_Check(argv
[0])) ? 1 : 0;
6688 _v
= (PyInt_Check(argv
[1]) || PyLong_Check(argv
[1])) ? 1 : 0;
6692 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
6696 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
6699 return _wrap_new_Strut__SWIG_1(self
,args
);
6706 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'new_Strut'");
6711 static PyObject
* Strut_swigregister(PyObject
*self
, PyObject
*args
) {
6713 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
6714 SWIG_TypeClientData(SWIGTYPE_p_otk__Strut
, obj
);
6716 return Py_BuildValue((char *)"");
6718 static PyObject
*_wrap_EventHandler_handle(PyObject
*self
, PyObject
*args
) {
6719 PyObject
*resultobj
;
6720 otk::EventHandler
*arg1
= (otk::EventHandler
*) 0 ;
6722 PyObject
* obj0
= 0 ;
6723 PyObject
* obj1
= 0 ;
6725 if(!PyArg_ParseTuple(args
,(char *)"OO:EventHandler_handle",&obj0
,&obj1
)) goto fail
;
6726 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__EventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6727 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6729 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
6731 (arg1
)->handle((XEvent
const &)*arg2
);
6733 Py_INCREF(Py_None
); resultobj
= Py_None
;
6740 static PyObject
*_wrap_EventHandler_keyPressHandler(PyObject
*self
, PyObject
*args
) {
6741 PyObject
*resultobj
;
6742 otk::EventHandler
*arg1
= (otk::EventHandler
*) 0 ;
6743 XKeyEvent
*arg2
= 0 ;
6744 PyObject
* obj0
= 0 ;
6745 PyObject
* obj1
= 0 ;
6747 if(!PyArg_ParseTuple(args
,(char *)"OO:EventHandler_keyPressHandler",&obj0
,&obj1
)) goto fail
;
6748 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__EventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6749 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XKeyEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6751 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
6753 (arg1
)->keyPressHandler((XKeyEvent
const &)*arg2
);
6755 Py_INCREF(Py_None
); resultobj
= Py_None
;
6762 static PyObject
*_wrap_EventHandler_keyReleaseHandler(PyObject
*self
, PyObject
*args
) {
6763 PyObject
*resultobj
;
6764 otk::EventHandler
*arg1
= (otk::EventHandler
*) 0 ;
6765 XKeyEvent
*arg2
= 0 ;
6766 PyObject
* obj0
= 0 ;
6767 PyObject
* obj1
= 0 ;
6769 if(!PyArg_ParseTuple(args
,(char *)"OO:EventHandler_keyReleaseHandler",&obj0
,&obj1
)) goto fail
;
6770 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__EventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6771 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XKeyEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6773 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
6775 (arg1
)->keyReleaseHandler((XKeyEvent
const &)*arg2
);
6777 Py_INCREF(Py_None
); resultobj
= Py_None
;
6784 static PyObject
*_wrap_EventHandler_buttonPressHandler(PyObject
*self
, PyObject
*args
) {
6785 PyObject
*resultobj
;
6786 otk::EventHandler
*arg1
= (otk::EventHandler
*) 0 ;
6787 XButtonEvent
*arg2
= 0 ;
6788 PyObject
* obj0
= 0 ;
6789 PyObject
* obj1
= 0 ;
6791 if(!PyArg_ParseTuple(args
,(char *)"OO:EventHandler_buttonPressHandler",&obj0
,&obj1
)) goto fail
;
6792 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__EventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6793 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XButtonEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6795 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
6797 (arg1
)->buttonPressHandler((XButtonEvent
const &)*arg2
);
6799 Py_INCREF(Py_None
); resultobj
= Py_None
;
6806 static PyObject
*_wrap_EventHandler_buttonReleaseHandler(PyObject
*self
, PyObject
*args
) {
6807 PyObject
*resultobj
;
6808 otk::EventHandler
*arg1
= (otk::EventHandler
*) 0 ;
6809 XButtonEvent
*arg2
= 0 ;
6810 PyObject
* obj0
= 0 ;
6811 PyObject
* obj1
= 0 ;
6813 if(!PyArg_ParseTuple(args
,(char *)"OO:EventHandler_buttonReleaseHandler",&obj0
,&obj1
)) goto fail
;
6814 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__EventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6815 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XButtonEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6817 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
6819 (arg1
)->buttonReleaseHandler((XButtonEvent
const &)*arg2
);
6821 Py_INCREF(Py_None
); resultobj
= Py_None
;
6828 static PyObject
*_wrap_EventHandler_motionHandler(PyObject
*self
, PyObject
*args
) {
6829 PyObject
*resultobj
;
6830 otk::EventHandler
*arg1
= (otk::EventHandler
*) 0 ;
6831 XMotionEvent
*arg2
= 0 ;
6832 PyObject
* obj0
= 0 ;
6833 PyObject
* obj1
= 0 ;
6835 if(!PyArg_ParseTuple(args
,(char *)"OO:EventHandler_motionHandler",&obj0
,&obj1
)) goto fail
;
6836 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__EventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6837 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XMotionEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6839 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
6841 (arg1
)->motionHandler((XMotionEvent
const &)*arg2
);
6843 Py_INCREF(Py_None
); resultobj
= Py_None
;
6850 static PyObject
*_wrap_EventHandler_enterHandler(PyObject
*self
, PyObject
*args
) {
6851 PyObject
*resultobj
;
6852 otk::EventHandler
*arg1
= (otk::EventHandler
*) 0 ;
6853 XCrossingEvent
*arg2
= 0 ;
6854 PyObject
* obj0
= 0 ;
6855 PyObject
* obj1
= 0 ;
6857 if(!PyArg_ParseTuple(args
,(char *)"OO:EventHandler_enterHandler",&obj0
,&obj1
)) goto fail
;
6858 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__EventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6859 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XCrossingEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6861 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
6863 (arg1
)->enterHandler((XCrossingEvent
const &)*arg2
);
6865 Py_INCREF(Py_None
); resultobj
= Py_None
;
6872 static PyObject
*_wrap_EventHandler_leaveHandler(PyObject
*self
, PyObject
*args
) {
6873 PyObject
*resultobj
;
6874 otk::EventHandler
*arg1
= (otk::EventHandler
*) 0 ;
6875 XCrossingEvent
*arg2
= 0 ;
6876 PyObject
* obj0
= 0 ;
6877 PyObject
* obj1
= 0 ;
6879 if(!PyArg_ParseTuple(args
,(char *)"OO:EventHandler_leaveHandler",&obj0
,&obj1
)) goto fail
;
6880 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__EventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6881 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XCrossingEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6883 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
6885 (arg1
)->leaveHandler((XCrossingEvent
const &)*arg2
);
6887 Py_INCREF(Py_None
); resultobj
= Py_None
;
6894 static PyObject
*_wrap_EventHandler_focusHandler(PyObject
*self
, PyObject
*args
) {
6895 PyObject
*resultobj
;
6896 otk::EventHandler
*arg1
= (otk::EventHandler
*) 0 ;
6897 XFocusChangeEvent
*arg2
= 0 ;
6898 PyObject
* obj0
= 0 ;
6899 PyObject
* obj1
= 0 ;
6901 if(!PyArg_ParseTuple(args
,(char *)"OO:EventHandler_focusHandler",&obj0
,&obj1
)) goto fail
;
6902 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__EventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6903 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XFocusChangeEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6905 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
6907 (arg1
)->focusHandler((XFocusChangeEvent
const &)*arg2
);
6909 Py_INCREF(Py_None
); resultobj
= Py_None
;
6916 static PyObject
*_wrap_EventHandler_unfocusHandler(PyObject
*self
, PyObject
*args
) {
6917 PyObject
*resultobj
;
6918 otk::EventHandler
*arg1
= (otk::EventHandler
*) 0 ;
6919 XFocusChangeEvent
*arg2
= 0 ;
6920 PyObject
* obj0
= 0 ;
6921 PyObject
* obj1
= 0 ;
6923 if(!PyArg_ParseTuple(args
,(char *)"OO:EventHandler_unfocusHandler",&obj0
,&obj1
)) goto fail
;
6924 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__EventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6925 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XFocusChangeEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6927 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
6929 (arg1
)->unfocusHandler((XFocusChangeEvent
const &)*arg2
);
6931 Py_INCREF(Py_None
); resultobj
= Py_None
;
6938 static PyObject
*_wrap_EventHandler_exposeHandler(PyObject
*self
, PyObject
*args
) {
6939 PyObject
*resultobj
;
6940 otk::EventHandler
*arg1
= (otk::EventHandler
*) 0 ;
6941 XExposeEvent
*arg2
= 0 ;
6942 PyObject
* obj0
= 0 ;
6943 PyObject
* obj1
= 0 ;
6945 if(!PyArg_ParseTuple(args
,(char *)"OO:EventHandler_exposeHandler",&obj0
,&obj1
)) goto fail
;
6946 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__EventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6947 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XExposeEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6949 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
6951 (arg1
)->exposeHandler((XExposeEvent
const &)*arg2
);
6953 Py_INCREF(Py_None
); resultobj
= Py_None
;
6960 static PyObject
*_wrap_EventHandler_graphicsExposeHandler(PyObject
*self
, PyObject
*args
) {
6961 PyObject
*resultobj
;
6962 otk::EventHandler
*arg1
= (otk::EventHandler
*) 0 ;
6963 XGraphicsExposeEvent
*arg2
= 0 ;
6964 PyObject
* obj0
= 0 ;
6965 PyObject
* obj1
= 0 ;
6967 if(!PyArg_ParseTuple(args
,(char *)"OO:EventHandler_graphicsExposeHandler",&obj0
,&obj1
)) goto fail
;
6968 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__EventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6969 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XGraphicsExposeEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6971 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
6973 (arg1
)->graphicsExposeHandler((XGraphicsExposeEvent
const &)*arg2
);
6975 Py_INCREF(Py_None
); resultobj
= Py_None
;
6982 static PyObject
*_wrap_EventHandler_noExposeEventHandler(PyObject
*self
, PyObject
*args
) {
6983 PyObject
*resultobj
;
6984 otk::EventHandler
*arg1
= (otk::EventHandler
*) 0 ;
6985 XNoExposeEvent
*arg2
= 0 ;
6986 PyObject
* obj0
= 0 ;
6987 PyObject
* obj1
= 0 ;
6989 if(!PyArg_ParseTuple(args
,(char *)"OO:EventHandler_noExposeEventHandler",&obj0
,&obj1
)) goto fail
;
6990 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__EventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6991 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XNoExposeEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
6993 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
6995 (arg1
)->noExposeEventHandler((XNoExposeEvent
const &)*arg2
);
6997 Py_INCREF(Py_None
); resultobj
= Py_None
;
7004 static PyObject
*_wrap_EventHandler_circulateRequestHandler(PyObject
*self
, PyObject
*args
) {
7005 PyObject
*resultobj
;
7006 otk::EventHandler
*arg1
= (otk::EventHandler
*) 0 ;
7007 XCirculateRequestEvent
*arg2
= 0 ;
7008 PyObject
* obj0
= 0 ;
7009 PyObject
* obj1
= 0 ;
7011 if(!PyArg_ParseTuple(args
,(char *)"OO:EventHandler_circulateRequestHandler",&obj0
,&obj1
)) goto fail
;
7012 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__EventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7013 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XCirculateRequestEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7015 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
7017 (arg1
)->circulateRequestHandler((XCirculateRequestEvent
const &)*arg2
);
7019 Py_INCREF(Py_None
); resultobj
= Py_None
;
7026 static PyObject
*_wrap_EventHandler_configureRequestHandler(PyObject
*self
, PyObject
*args
) {
7027 PyObject
*resultobj
;
7028 otk::EventHandler
*arg1
= (otk::EventHandler
*) 0 ;
7029 XConfigureRequestEvent
*arg2
= 0 ;
7030 PyObject
* obj0
= 0 ;
7031 PyObject
* obj1
= 0 ;
7033 if(!PyArg_ParseTuple(args
,(char *)"OO:EventHandler_configureRequestHandler",&obj0
,&obj1
)) goto fail
;
7034 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__EventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7035 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XConfigureRequestEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7037 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
7039 (arg1
)->configureRequestHandler((XConfigureRequestEvent
const &)*arg2
);
7041 Py_INCREF(Py_None
); resultobj
= Py_None
;
7048 static PyObject
*_wrap_EventHandler_mapRequestHandler(PyObject
*self
, PyObject
*args
) {
7049 PyObject
*resultobj
;
7050 otk::EventHandler
*arg1
= (otk::EventHandler
*) 0 ;
7051 XMapRequestEvent
*arg2
= 0 ;
7052 PyObject
* obj0
= 0 ;
7053 PyObject
* obj1
= 0 ;
7055 if(!PyArg_ParseTuple(args
,(char *)"OO:EventHandler_mapRequestHandler",&obj0
,&obj1
)) goto fail
;
7056 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__EventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7057 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XMapRequestEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7059 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
7061 (arg1
)->mapRequestHandler((XMapRequestEvent
const &)*arg2
);
7063 Py_INCREF(Py_None
); resultobj
= Py_None
;
7070 static PyObject
*_wrap_EventHandler_resizeRequestHandler(PyObject
*self
, PyObject
*args
) {
7071 PyObject
*resultobj
;
7072 otk::EventHandler
*arg1
= (otk::EventHandler
*) 0 ;
7073 XResizeRequestEvent
*arg2
= 0 ;
7074 PyObject
* obj0
= 0 ;
7075 PyObject
* obj1
= 0 ;
7077 if(!PyArg_ParseTuple(args
,(char *)"OO:EventHandler_resizeRequestHandler",&obj0
,&obj1
)) goto fail
;
7078 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__EventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7079 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XResizeRequestEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7081 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
7083 (arg1
)->resizeRequestHandler((XResizeRequestEvent
const &)*arg2
);
7085 Py_INCREF(Py_None
); resultobj
= Py_None
;
7092 static PyObject
*_wrap_EventHandler_circulateHandler(PyObject
*self
, PyObject
*args
) {
7093 PyObject
*resultobj
;
7094 otk::EventHandler
*arg1
= (otk::EventHandler
*) 0 ;
7095 XCirculateEvent
*arg2
= 0 ;
7096 PyObject
* obj0
= 0 ;
7097 PyObject
* obj1
= 0 ;
7099 if(!PyArg_ParseTuple(args
,(char *)"OO:EventHandler_circulateHandler",&obj0
,&obj1
)) goto fail
;
7100 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__EventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7101 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XCirculateEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7103 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
7105 (arg1
)->circulateHandler((XCirculateEvent
const &)*arg2
);
7107 Py_INCREF(Py_None
); resultobj
= Py_None
;
7114 static PyObject
*_wrap_EventHandler_configureHandler(PyObject
*self
, PyObject
*args
) {
7115 PyObject
*resultobj
;
7116 otk::EventHandler
*arg1
= (otk::EventHandler
*) 0 ;
7117 XConfigureEvent
*arg2
= 0 ;
7118 PyObject
* obj0
= 0 ;
7119 PyObject
* obj1
= 0 ;
7121 if(!PyArg_ParseTuple(args
,(char *)"OO:EventHandler_configureHandler",&obj0
,&obj1
)) goto fail
;
7122 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__EventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7123 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XConfigureEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7125 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
7127 (arg1
)->configureHandler((XConfigureEvent
const &)*arg2
);
7129 Py_INCREF(Py_None
); resultobj
= Py_None
;
7136 static PyObject
*_wrap_EventHandler_createHandler(PyObject
*self
, PyObject
*args
) {
7137 PyObject
*resultobj
;
7138 otk::EventHandler
*arg1
= (otk::EventHandler
*) 0 ;
7139 XCreateWindowEvent
*arg2
= 0 ;
7140 PyObject
* obj0
= 0 ;
7141 PyObject
* obj1
= 0 ;
7143 if(!PyArg_ParseTuple(args
,(char *)"OO:EventHandler_createHandler",&obj0
,&obj1
)) goto fail
;
7144 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__EventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7145 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XCreateWindowEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7147 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
7149 (arg1
)->createHandler((XCreateWindowEvent
const &)*arg2
);
7151 Py_INCREF(Py_None
); resultobj
= Py_None
;
7158 static PyObject
*_wrap_EventHandler_destroyHandler(PyObject
*self
, PyObject
*args
) {
7159 PyObject
*resultobj
;
7160 otk::EventHandler
*arg1
= (otk::EventHandler
*) 0 ;
7161 XDestroyWindowEvent
*arg2
= 0 ;
7162 PyObject
* obj0
= 0 ;
7163 PyObject
* obj1
= 0 ;
7165 if(!PyArg_ParseTuple(args
,(char *)"OO:EventHandler_destroyHandler",&obj0
,&obj1
)) goto fail
;
7166 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__EventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7167 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XDestroyWindowEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7169 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
7171 (arg1
)->destroyHandler((XDestroyWindowEvent
const &)*arg2
);
7173 Py_INCREF(Py_None
); resultobj
= Py_None
;
7180 static PyObject
*_wrap_EventHandler_gravityHandler(PyObject
*self
, PyObject
*args
) {
7181 PyObject
*resultobj
;
7182 otk::EventHandler
*arg1
= (otk::EventHandler
*) 0 ;
7183 XGravityEvent
*arg2
= 0 ;
7184 PyObject
* obj0
= 0 ;
7185 PyObject
* obj1
= 0 ;
7187 if(!PyArg_ParseTuple(args
,(char *)"OO:EventHandler_gravityHandler",&obj0
,&obj1
)) goto fail
;
7188 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__EventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7189 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XGravityEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7191 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
7193 (arg1
)->gravityHandler((XGravityEvent
const &)*arg2
);
7195 Py_INCREF(Py_None
); resultobj
= Py_None
;
7202 static PyObject
*_wrap_EventHandler_mapHandler(PyObject
*self
, PyObject
*args
) {
7203 PyObject
*resultobj
;
7204 otk::EventHandler
*arg1
= (otk::EventHandler
*) 0 ;
7205 XMapEvent
*arg2
= 0 ;
7206 PyObject
* obj0
= 0 ;
7207 PyObject
* obj1
= 0 ;
7209 if(!PyArg_ParseTuple(args
,(char *)"OO:EventHandler_mapHandler",&obj0
,&obj1
)) goto fail
;
7210 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__EventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7211 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XMapEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7213 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
7215 (arg1
)->mapHandler((XMapEvent
const &)*arg2
);
7217 Py_INCREF(Py_None
); resultobj
= Py_None
;
7224 static PyObject
*_wrap_EventHandler_mappingHandler(PyObject
*self
, PyObject
*args
) {
7225 PyObject
*resultobj
;
7226 otk::EventHandler
*arg1
= (otk::EventHandler
*) 0 ;
7227 XMappingEvent
*arg2
= 0 ;
7228 PyObject
* obj0
= 0 ;
7229 PyObject
* obj1
= 0 ;
7231 if(!PyArg_ParseTuple(args
,(char *)"OO:EventHandler_mappingHandler",&obj0
,&obj1
)) goto fail
;
7232 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__EventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7233 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XMappingEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7235 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
7237 (arg1
)->mappingHandler((XMappingEvent
const &)*arg2
);
7239 Py_INCREF(Py_None
); resultobj
= Py_None
;
7246 static PyObject
*_wrap_EventHandler_reparentHandler(PyObject
*self
, PyObject
*args
) {
7247 PyObject
*resultobj
;
7248 otk::EventHandler
*arg1
= (otk::EventHandler
*) 0 ;
7249 XReparentEvent
*arg2
= 0 ;
7250 PyObject
* obj0
= 0 ;
7251 PyObject
* obj1
= 0 ;
7253 if(!PyArg_ParseTuple(args
,(char *)"OO:EventHandler_reparentHandler",&obj0
,&obj1
)) goto fail
;
7254 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__EventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7255 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XReparentEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7257 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
7259 (arg1
)->reparentHandler((XReparentEvent
const &)*arg2
);
7261 Py_INCREF(Py_None
); resultobj
= Py_None
;
7268 static PyObject
*_wrap_EventHandler_unmapHandler(PyObject
*self
, PyObject
*args
) {
7269 PyObject
*resultobj
;
7270 otk::EventHandler
*arg1
= (otk::EventHandler
*) 0 ;
7271 XUnmapEvent
*arg2
= 0 ;
7272 PyObject
* obj0
= 0 ;
7273 PyObject
* obj1
= 0 ;
7275 if(!PyArg_ParseTuple(args
,(char *)"OO:EventHandler_unmapHandler",&obj0
,&obj1
)) goto fail
;
7276 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__EventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7277 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XUnmapEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7279 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
7281 (arg1
)->unmapHandler((XUnmapEvent
const &)*arg2
);
7283 Py_INCREF(Py_None
); resultobj
= Py_None
;
7290 static PyObject
*_wrap_EventHandler_visibilityHandler(PyObject
*self
, PyObject
*args
) {
7291 PyObject
*resultobj
;
7292 otk::EventHandler
*arg1
= (otk::EventHandler
*) 0 ;
7293 XVisibilityEvent
*arg2
= 0 ;
7294 PyObject
* obj0
= 0 ;
7295 PyObject
* obj1
= 0 ;
7297 if(!PyArg_ParseTuple(args
,(char *)"OO:EventHandler_visibilityHandler",&obj0
,&obj1
)) goto fail
;
7298 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__EventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7299 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XVisibilityEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7301 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
7303 (arg1
)->visibilityHandler((XVisibilityEvent
const &)*arg2
);
7305 Py_INCREF(Py_None
); resultobj
= Py_None
;
7312 static PyObject
*_wrap_EventHandler_colorMapHandler(PyObject
*self
, PyObject
*args
) {
7313 PyObject
*resultobj
;
7314 otk::EventHandler
*arg1
= (otk::EventHandler
*) 0 ;
7315 XColormapEvent
*arg2
= 0 ;
7316 PyObject
* obj0
= 0 ;
7317 PyObject
* obj1
= 0 ;
7319 if(!PyArg_ParseTuple(args
,(char *)"OO:EventHandler_colorMapHandler",&obj0
,&obj1
)) goto fail
;
7320 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__EventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7321 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XColormapEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7323 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
7325 (arg1
)->colorMapHandler((XColormapEvent
const &)*arg2
);
7327 Py_INCREF(Py_None
); resultobj
= Py_None
;
7334 static PyObject
*_wrap_EventHandler_propertyHandler(PyObject
*self
, PyObject
*args
) {
7335 PyObject
*resultobj
;
7336 otk::EventHandler
*arg1
= (otk::EventHandler
*) 0 ;
7337 XPropertyEvent
*arg2
= 0 ;
7338 PyObject
* obj0
= 0 ;
7339 PyObject
* obj1
= 0 ;
7341 if(!PyArg_ParseTuple(args
,(char *)"OO:EventHandler_propertyHandler",&obj0
,&obj1
)) goto fail
;
7342 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__EventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7343 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XPropertyEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7345 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
7347 (arg1
)->propertyHandler((XPropertyEvent
const &)*arg2
);
7349 Py_INCREF(Py_None
); resultobj
= Py_None
;
7356 static PyObject
*_wrap_EventHandler_selectionClearHandler(PyObject
*self
, PyObject
*args
) {
7357 PyObject
*resultobj
;
7358 otk::EventHandler
*arg1
= (otk::EventHandler
*) 0 ;
7359 XSelectionClearEvent
*arg2
= 0 ;
7360 PyObject
* obj0
= 0 ;
7361 PyObject
* obj1
= 0 ;
7363 if(!PyArg_ParseTuple(args
,(char *)"OO:EventHandler_selectionClearHandler",&obj0
,&obj1
)) goto fail
;
7364 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__EventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7365 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XSelectionClearEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7367 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
7369 (arg1
)->selectionClearHandler((XSelectionClearEvent
const &)*arg2
);
7371 Py_INCREF(Py_None
); resultobj
= Py_None
;
7378 static PyObject
*_wrap_EventHandler_selectionHandler(PyObject
*self
, PyObject
*args
) {
7379 PyObject
*resultobj
;
7380 otk::EventHandler
*arg1
= (otk::EventHandler
*) 0 ;
7381 XSelectionEvent
*arg2
= 0 ;
7382 PyObject
* obj0
= 0 ;
7383 PyObject
* obj1
= 0 ;
7385 if(!PyArg_ParseTuple(args
,(char *)"OO:EventHandler_selectionHandler",&obj0
,&obj1
)) goto fail
;
7386 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__EventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7387 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XSelectionEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7389 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
7391 (arg1
)->selectionHandler((XSelectionEvent
const &)*arg2
);
7393 Py_INCREF(Py_None
); resultobj
= Py_None
;
7400 static PyObject
*_wrap_EventHandler_selectionRequestHandler(PyObject
*self
, PyObject
*args
) {
7401 PyObject
*resultobj
;
7402 otk::EventHandler
*arg1
= (otk::EventHandler
*) 0 ;
7403 XSelectionRequestEvent
*arg2
= 0 ;
7404 PyObject
* obj0
= 0 ;
7405 PyObject
* obj1
= 0 ;
7407 if(!PyArg_ParseTuple(args
,(char *)"OO:EventHandler_selectionRequestHandler",&obj0
,&obj1
)) goto fail
;
7408 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__EventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7409 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XSelectionRequestEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7411 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
7413 (arg1
)->selectionRequestHandler((XSelectionRequestEvent
const &)*arg2
);
7415 Py_INCREF(Py_None
); resultobj
= Py_None
;
7422 static PyObject
*_wrap_EventHandler_clientMessageHandler(PyObject
*self
, PyObject
*args
) {
7423 PyObject
*resultobj
;
7424 otk::EventHandler
*arg1
= (otk::EventHandler
*) 0 ;
7425 XClientMessageEvent
*arg2
= 0 ;
7426 PyObject
* obj0
= 0 ;
7427 PyObject
* obj1
= 0 ;
7429 if(!PyArg_ParseTuple(args
,(char *)"OO:EventHandler_clientMessageHandler",&obj0
,&obj1
)) goto fail
;
7430 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__EventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7431 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XClientMessageEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7433 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
7435 (arg1
)->clientMessageHandler((XClientMessageEvent
const &)*arg2
);
7437 Py_INCREF(Py_None
); resultobj
= Py_None
;
7444 static PyObject
*_wrap_delete_EventHandler(PyObject
*self
, PyObject
*args
) {
7445 PyObject
*resultobj
;
7446 otk::EventHandler
*arg1
= (otk::EventHandler
*) 0 ;
7447 PyObject
* obj0
= 0 ;
7449 if(!PyArg_ParseTuple(args
,(char *)"O:delete_EventHandler",&obj0
)) goto fail
;
7450 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__EventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7453 Py_INCREF(Py_None
); resultobj
= Py_None
;
7460 static PyObject
* EventHandler_swigregister(PyObject
*self
, PyObject
*args
) {
7462 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
7463 SWIG_TypeClientData(SWIGTYPE_p_otk__EventHandler
, obj
);
7465 return Py_BuildValue((char *)"");
7467 static PyObject
*_wrap_new_EventDispatcher(PyObject
*self
, PyObject
*args
) {
7468 PyObject
*resultobj
;
7469 otk::EventDispatcher
*result
;
7471 if(!PyArg_ParseTuple(args
,(char *)":new_EventDispatcher")) goto fail
;
7472 result
= (otk::EventDispatcher
*)new otk::EventDispatcher();
7474 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__EventDispatcher
, 1);
7481 static PyObject
*_wrap_delete_EventDispatcher(PyObject
*self
, PyObject
*args
) {
7482 PyObject
*resultobj
;
7483 otk::EventDispatcher
*arg1
= (otk::EventDispatcher
*) 0 ;
7484 PyObject
* obj0
= 0 ;
7486 if(!PyArg_ParseTuple(args
,(char *)"O:delete_EventDispatcher",&obj0
)) goto fail
;
7487 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__EventDispatcher
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7490 Py_INCREF(Py_None
); resultobj
= Py_None
;
7497 static PyObject
*_wrap_EventDispatcher_clearAllHandlers(PyObject
*self
, PyObject
*args
) {
7498 PyObject
*resultobj
;
7499 otk::EventDispatcher
*arg1
= (otk::EventDispatcher
*) 0 ;
7500 PyObject
* obj0
= 0 ;
7502 if(!PyArg_ParseTuple(args
,(char *)"O:EventDispatcher_clearAllHandlers",&obj0
)) goto fail
;
7503 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__EventDispatcher
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7504 (arg1
)->clearAllHandlers();
7506 Py_INCREF(Py_None
); resultobj
= Py_None
;
7513 static PyObject
*_wrap_EventDispatcher_registerHandler(PyObject
*self
, PyObject
*args
) {
7514 PyObject
*resultobj
;
7515 otk::EventDispatcher
*arg1
= (otk::EventDispatcher
*) 0 ;
7517 otk::EventHandler
*arg3
= (otk::EventHandler
*) 0 ;
7518 PyObject
* obj0
= 0 ;
7519 PyObject
* obj1
= 0 ;
7520 PyObject
* obj2
= 0 ;
7522 if(!PyArg_ParseTuple(args
,(char *)"OOO:EventDispatcher_registerHandler",&obj0
,&obj1
,&obj2
)) goto fail
;
7523 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__EventDispatcher
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7524 arg2
= (Window
) PyInt_AsLong(obj1
);
7525 if (PyErr_Occurred()) SWIG_fail
;
7526 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_otk__EventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7527 (arg1
)->registerHandler(arg2
,arg3
);
7529 Py_INCREF(Py_None
); resultobj
= Py_None
;
7536 static PyObject
*_wrap_EventDispatcher_clearHandler(PyObject
*self
, PyObject
*args
) {
7537 PyObject
*resultobj
;
7538 otk::EventDispatcher
*arg1
= (otk::EventDispatcher
*) 0 ;
7540 PyObject
* obj0
= 0 ;
7541 PyObject
* obj1
= 0 ;
7543 if(!PyArg_ParseTuple(args
,(char *)"OO:EventDispatcher_clearHandler",&obj0
,&obj1
)) goto fail
;
7544 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__EventDispatcher
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7545 arg2
= (Window
) PyInt_AsLong(obj1
);
7546 if (PyErr_Occurred()) SWIG_fail
;
7547 (arg1
)->clearHandler(arg2
);
7549 Py_INCREF(Py_None
); resultobj
= Py_None
;
7556 static PyObject
*_wrap_EventDispatcher_dispatchEvents(PyObject
*self
, PyObject
*args
) {
7557 PyObject
*resultobj
;
7558 otk::EventDispatcher
*arg1
= (otk::EventDispatcher
*) 0 ;
7559 PyObject
* obj0
= 0 ;
7561 if(!PyArg_ParseTuple(args
,(char *)"O:EventDispatcher_dispatchEvents",&obj0
)) goto fail
;
7562 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__EventDispatcher
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7563 (arg1
)->dispatchEvents();
7565 Py_INCREF(Py_None
); resultobj
= Py_None
;
7572 static PyObject
*_wrap_EventDispatcher_setFallbackHandler(PyObject
*self
, PyObject
*args
) {
7573 PyObject
*resultobj
;
7574 otk::EventDispatcher
*arg1
= (otk::EventDispatcher
*) 0 ;
7575 otk::EventHandler
*arg2
= (otk::EventHandler
*) 0 ;
7576 PyObject
* obj0
= 0 ;
7577 PyObject
* obj1
= 0 ;
7579 if(!PyArg_ParseTuple(args
,(char *)"OO:EventDispatcher_setFallbackHandler",&obj0
,&obj1
)) goto fail
;
7580 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__EventDispatcher
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7581 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__EventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7582 (arg1
)->setFallbackHandler(arg2
);
7584 Py_INCREF(Py_None
); resultobj
= Py_None
;
7591 static PyObject
*_wrap_EventDispatcher_getFallbackHandler(PyObject
*self
, PyObject
*args
) {
7592 PyObject
*resultobj
;
7593 otk::EventDispatcher
*arg1
= (otk::EventDispatcher
*) 0 ;
7594 otk::EventHandler
*result
;
7595 PyObject
* obj0
= 0 ;
7597 if(!PyArg_ParseTuple(args
,(char *)"O:EventDispatcher_getFallbackHandler",&obj0
)) goto fail
;
7598 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__EventDispatcher
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7599 result
= (otk::EventHandler
*)((otk::EventDispatcher
const *)arg1
)->getFallbackHandler();
7601 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__EventHandler
, 0);
7608 static PyObject
*_wrap_EventDispatcher_setMasterHandler(PyObject
*self
, PyObject
*args
) {
7609 PyObject
*resultobj
;
7610 otk::EventDispatcher
*arg1
= (otk::EventDispatcher
*) 0 ;
7611 otk::EventHandler
*arg2
= (otk::EventHandler
*) 0 ;
7612 PyObject
* obj0
= 0 ;
7613 PyObject
* obj1
= 0 ;
7615 if(!PyArg_ParseTuple(args
,(char *)"OO:EventDispatcher_setMasterHandler",&obj0
,&obj1
)) goto fail
;
7616 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__EventDispatcher
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7617 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__EventHandler
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7618 (arg1
)->setMasterHandler(arg2
);
7620 Py_INCREF(Py_None
); resultobj
= Py_None
;
7627 static PyObject
*_wrap_EventDispatcher_getMasterHandler(PyObject
*self
, PyObject
*args
) {
7628 PyObject
*resultobj
;
7629 otk::EventDispatcher
*arg1
= (otk::EventDispatcher
*) 0 ;
7630 otk::EventHandler
*result
;
7631 PyObject
* obj0
= 0 ;
7633 if(!PyArg_ParseTuple(args
,(char *)"O:EventDispatcher_getMasterHandler",&obj0
)) goto fail
;
7634 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__EventDispatcher
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7635 result
= (otk::EventHandler
*)((otk::EventDispatcher
const *)arg1
)->getMasterHandler();
7637 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__EventHandler
, 0);
7644 static PyObject
*_wrap_EventDispatcher_findHandler(PyObject
*self
, PyObject
*args
) {
7645 PyObject
*resultobj
;
7646 otk::EventDispatcher
*arg1
= (otk::EventDispatcher
*) 0 ;
7648 otk::EventHandler
*result
;
7649 PyObject
* obj0
= 0 ;
7650 PyObject
* obj1
= 0 ;
7652 if(!PyArg_ParseTuple(args
,(char *)"OO:EventDispatcher_findHandler",&obj0
,&obj1
)) goto fail
;
7653 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__EventDispatcher
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7654 arg2
= (Window
) PyInt_AsLong(obj1
);
7655 if (PyErr_Occurred()) SWIG_fail
;
7656 result
= (otk::EventHandler
*)(arg1
)->findHandler(arg2
);
7658 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__EventHandler
, 0);
7665 static PyObject
*_wrap_EventDispatcher_lastTime(PyObject
*self
, PyObject
*args
) {
7666 PyObject
*resultobj
;
7667 otk::EventDispatcher
*arg1
= (otk::EventDispatcher
*) 0 ;
7669 PyObject
* obj0
= 0 ;
7671 if(!PyArg_ParseTuple(args
,(char *)"O:EventDispatcher_lastTime",&obj0
)) goto fail
;
7672 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_otk__EventDispatcher
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7673 result
= (Time
)((otk::EventDispatcher
const *)arg1
)->lastTime();
7675 resultobj
= PyInt_FromLong((long)result
);
7682 static PyObject
* EventDispatcher_swigregister(PyObject
*self
, PyObject
*args
) {
7684 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
7685 SWIG_TypeClientData(SWIGTYPE_p_otk__EventDispatcher
, obj
);
7687 return Py_BuildValue((char *)"");
7689 static PyObject
*_wrap_Cursors_session_set(PyObject
*self
, PyObject
*args
) {
7690 PyObject
*resultobj
;
7691 ob::Cursors
*arg1
= (ob::Cursors
*) 0 ;
7693 PyObject
* obj0
= 0 ;
7694 PyObject
* obj1
= 0 ;
7696 if(!PyArg_ParseTuple(args
,(char *)"OO:Cursors_session_set",&obj0
,&obj1
)) goto fail
;
7697 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Cursors
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7698 arg2
= (Cursor
) PyInt_AsLong(obj1
);
7699 if (PyErr_Occurred()) SWIG_fail
;
7700 if (arg1
) (arg1
)->session
= arg2
;
7702 Py_INCREF(Py_None
); resultobj
= Py_None
;
7709 static PyObject
*_wrap_Cursors_session_get(PyObject
*self
, PyObject
*args
) {
7710 PyObject
*resultobj
;
7711 ob::Cursors
*arg1
= (ob::Cursors
*) 0 ;
7713 PyObject
* obj0
= 0 ;
7715 if(!PyArg_ParseTuple(args
,(char *)"O:Cursors_session_get",&obj0
)) goto fail
;
7716 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Cursors
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7717 result
= (Cursor
) ((arg1
)->session
);
7719 resultobj
= PyInt_FromLong((long)result
);
7726 static PyObject
*_wrap_Cursors_move_set(PyObject
*self
, PyObject
*args
) {
7727 PyObject
*resultobj
;
7728 ob::Cursors
*arg1
= (ob::Cursors
*) 0 ;
7730 PyObject
* obj0
= 0 ;
7731 PyObject
* obj1
= 0 ;
7733 if(!PyArg_ParseTuple(args
,(char *)"OO:Cursors_move_set",&obj0
,&obj1
)) goto fail
;
7734 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Cursors
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7735 arg2
= (Cursor
) PyInt_AsLong(obj1
);
7736 if (PyErr_Occurred()) SWIG_fail
;
7737 if (arg1
) (arg1
)->move
= arg2
;
7739 Py_INCREF(Py_None
); resultobj
= Py_None
;
7746 static PyObject
*_wrap_Cursors_move_get(PyObject
*self
, PyObject
*args
) {
7747 PyObject
*resultobj
;
7748 ob::Cursors
*arg1
= (ob::Cursors
*) 0 ;
7750 PyObject
* obj0
= 0 ;
7752 if(!PyArg_ParseTuple(args
,(char *)"O:Cursors_move_get",&obj0
)) goto fail
;
7753 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Cursors
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7754 result
= (Cursor
) ((arg1
)->move
);
7756 resultobj
= PyInt_FromLong((long)result
);
7763 static PyObject
*_wrap_Cursors_ll_angle_set(PyObject
*self
, PyObject
*args
) {
7764 PyObject
*resultobj
;
7765 ob::Cursors
*arg1
= (ob::Cursors
*) 0 ;
7767 PyObject
* obj0
= 0 ;
7768 PyObject
* obj1
= 0 ;
7770 if(!PyArg_ParseTuple(args
,(char *)"OO:Cursors_ll_angle_set",&obj0
,&obj1
)) goto fail
;
7771 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Cursors
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7772 arg2
= (Cursor
) PyInt_AsLong(obj1
);
7773 if (PyErr_Occurred()) SWIG_fail
;
7774 if (arg1
) (arg1
)->ll_angle
= arg2
;
7776 Py_INCREF(Py_None
); resultobj
= Py_None
;
7783 static PyObject
*_wrap_Cursors_ll_angle_get(PyObject
*self
, PyObject
*args
) {
7784 PyObject
*resultobj
;
7785 ob::Cursors
*arg1
= (ob::Cursors
*) 0 ;
7787 PyObject
* obj0
= 0 ;
7789 if(!PyArg_ParseTuple(args
,(char *)"O:Cursors_ll_angle_get",&obj0
)) goto fail
;
7790 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Cursors
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7791 result
= (Cursor
) ((arg1
)->ll_angle
);
7793 resultobj
= PyInt_FromLong((long)result
);
7800 static PyObject
*_wrap_Cursors_lr_angle_set(PyObject
*self
, PyObject
*args
) {
7801 PyObject
*resultobj
;
7802 ob::Cursors
*arg1
= (ob::Cursors
*) 0 ;
7804 PyObject
* obj0
= 0 ;
7805 PyObject
* obj1
= 0 ;
7807 if(!PyArg_ParseTuple(args
,(char *)"OO:Cursors_lr_angle_set",&obj0
,&obj1
)) goto fail
;
7808 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Cursors
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7809 arg2
= (Cursor
) PyInt_AsLong(obj1
);
7810 if (PyErr_Occurred()) SWIG_fail
;
7811 if (arg1
) (arg1
)->lr_angle
= arg2
;
7813 Py_INCREF(Py_None
); resultobj
= Py_None
;
7820 static PyObject
*_wrap_Cursors_lr_angle_get(PyObject
*self
, PyObject
*args
) {
7821 PyObject
*resultobj
;
7822 ob::Cursors
*arg1
= (ob::Cursors
*) 0 ;
7824 PyObject
* obj0
= 0 ;
7826 if(!PyArg_ParseTuple(args
,(char *)"O:Cursors_lr_angle_get",&obj0
)) goto fail
;
7827 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Cursors
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7828 result
= (Cursor
) ((arg1
)->lr_angle
);
7830 resultobj
= PyInt_FromLong((long)result
);
7837 static PyObject
*_wrap_Cursors_ul_angle_set(PyObject
*self
, PyObject
*args
) {
7838 PyObject
*resultobj
;
7839 ob::Cursors
*arg1
= (ob::Cursors
*) 0 ;
7841 PyObject
* obj0
= 0 ;
7842 PyObject
* obj1
= 0 ;
7844 if(!PyArg_ParseTuple(args
,(char *)"OO:Cursors_ul_angle_set",&obj0
,&obj1
)) goto fail
;
7845 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Cursors
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7846 arg2
= (Cursor
) PyInt_AsLong(obj1
);
7847 if (PyErr_Occurred()) SWIG_fail
;
7848 if (arg1
) (arg1
)->ul_angle
= arg2
;
7850 Py_INCREF(Py_None
); resultobj
= Py_None
;
7857 static PyObject
*_wrap_Cursors_ul_angle_get(PyObject
*self
, PyObject
*args
) {
7858 PyObject
*resultobj
;
7859 ob::Cursors
*arg1
= (ob::Cursors
*) 0 ;
7861 PyObject
* obj0
= 0 ;
7863 if(!PyArg_ParseTuple(args
,(char *)"O:Cursors_ul_angle_get",&obj0
)) goto fail
;
7864 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Cursors
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7865 result
= (Cursor
) ((arg1
)->ul_angle
);
7867 resultobj
= PyInt_FromLong((long)result
);
7874 static PyObject
*_wrap_Cursors_ur_angle_set(PyObject
*self
, PyObject
*args
) {
7875 PyObject
*resultobj
;
7876 ob::Cursors
*arg1
= (ob::Cursors
*) 0 ;
7878 PyObject
* obj0
= 0 ;
7879 PyObject
* obj1
= 0 ;
7881 if(!PyArg_ParseTuple(args
,(char *)"OO:Cursors_ur_angle_set",&obj0
,&obj1
)) goto fail
;
7882 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Cursors
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7883 arg2
= (Cursor
) PyInt_AsLong(obj1
);
7884 if (PyErr_Occurred()) SWIG_fail
;
7885 if (arg1
) (arg1
)->ur_angle
= arg2
;
7887 Py_INCREF(Py_None
); resultobj
= Py_None
;
7894 static PyObject
*_wrap_Cursors_ur_angle_get(PyObject
*self
, PyObject
*args
) {
7895 PyObject
*resultobj
;
7896 ob::Cursors
*arg1
= (ob::Cursors
*) 0 ;
7898 PyObject
* obj0
= 0 ;
7900 if(!PyArg_ParseTuple(args
,(char *)"O:Cursors_ur_angle_get",&obj0
)) goto fail
;
7901 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Cursors
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7902 result
= (Cursor
) ((arg1
)->ur_angle
);
7904 resultobj
= PyInt_FromLong((long)result
);
7911 static PyObject
* Cursors_swigregister(PyObject
*self
, PyObject
*args
) {
7913 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
7914 SWIG_TypeClientData(SWIGTYPE_p_ob__Cursors
, obj
);
7916 return Py_BuildValue((char *)"");
7918 static PyObject
*_wrap_Openbox_state(PyObject
*self
, PyObject
*args
) {
7919 PyObject
*resultobj
;
7920 ob::Openbox
*arg1
= (ob::Openbox
*) 0 ;
7922 PyObject
* obj0
= 0 ;
7924 if(!PyArg_ParseTuple(args
,(char *)"O:Openbox_state",&obj0
)) goto fail
;
7925 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Openbox
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7926 result
= (int)((ob::Openbox
const *)arg1
)->state();
7928 resultobj
= PyInt_FromLong((long)result
);
7935 static PyObject
*_wrap_Openbox_actions(PyObject
*self
, PyObject
*args
) {
7936 PyObject
*resultobj
;
7937 ob::Openbox
*arg1
= (ob::Openbox
*) 0 ;
7938 ob::Actions
*result
;
7939 PyObject
* obj0
= 0 ;
7941 if(!PyArg_ParseTuple(args
,(char *)"O:Openbox_actions",&obj0
)) goto fail
;
7942 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Openbox
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7943 result
= (ob::Actions
*)((ob::Openbox
const *)arg1
)->actions();
7945 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_ob__Actions
, 0);
7952 static PyObject
*_wrap_Openbox_bindings(PyObject
*self
, PyObject
*args
) {
7953 PyObject
*resultobj
;
7954 ob::Openbox
*arg1
= (ob::Openbox
*) 0 ;
7955 ob::Bindings
*result
;
7956 PyObject
* obj0
= 0 ;
7958 if(!PyArg_ParseTuple(args
,(char *)"O:Openbox_bindings",&obj0
)) goto fail
;
7959 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Openbox
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7960 result
= (ob::Bindings
*)((ob::Openbox
const *)arg1
)->bindings();
7962 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_ob__Bindings
, 0);
7969 static PyObject
*_wrap_Openbox_screen(PyObject
*self
, PyObject
*args
) {
7970 PyObject
*resultobj
;
7971 ob::Openbox
*arg1
= (ob::Openbox
*) 0 ;
7974 PyObject
* obj0
= 0 ;
7976 if(!PyArg_ParseTuple(args
,(char *)"Oi:Openbox_screen",&obj0
,&arg2
)) goto fail
;
7977 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Openbox
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7978 result
= (ob::Screen
*)(arg1
)->screen(arg2
);
7980 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_ob__Screen
, 0);
7987 static PyObject
*_wrap_Openbox_screenCount(PyObject
*self
, PyObject
*args
) {
7988 PyObject
*resultobj
;
7989 ob::Openbox
*arg1
= (ob::Openbox
*) 0 ;
7991 PyObject
* obj0
= 0 ;
7993 if(!PyArg_ParseTuple(args
,(char *)"O:Openbox_screenCount",&obj0
)) goto fail
;
7994 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Openbox
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
7995 result
= (int)((ob::Openbox
const *)arg1
)->screenCount();
7997 resultobj
= PyInt_FromLong((long)result
);
8004 static PyObject
*_wrap_Openbox_cursors(PyObject
*self
, PyObject
*args
) {
8005 PyObject
*resultobj
;
8006 ob::Openbox
*arg1
= (ob::Openbox
*) 0 ;
8007 ob::Cursors
*result
;
8008 PyObject
* obj0
= 0 ;
8010 if(!PyArg_ParseTuple(args
,(char *)"O:Openbox_cursors",&obj0
)) goto fail
;
8011 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Openbox
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8013 ob::Cursors
const &_result_ref
= ((ob::Openbox
const *)arg1
)->cursors();
8014 result
= (ob::Cursors
*) &_result_ref
;
8017 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_ob__Cursors
, 0);
8024 static PyObject
*_wrap_Openbox_addClient(PyObject
*self
, PyObject
*args
) {
8025 PyObject
*resultobj
;
8026 ob::Openbox
*arg1
= (ob::Openbox
*) 0 ;
8028 ob::Client
*arg3
= (ob::Client
*) 0 ;
8029 PyObject
* obj0
= 0 ;
8030 PyObject
* obj1
= 0 ;
8031 PyObject
* obj2
= 0 ;
8033 if(!PyArg_ParseTuple(args
,(char *)"OOO:Openbox_addClient",&obj0
,&obj1
,&obj2
)) goto fail
;
8034 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Openbox
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8035 arg2
= (Window
) PyInt_AsLong(obj1
);
8036 if (PyErr_Occurred()) SWIG_fail
;
8037 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8038 (arg1
)->addClient(arg2
,arg3
);
8040 Py_INCREF(Py_None
); resultobj
= Py_None
;
8047 static PyObject
*_wrap_Openbox_removeClient(PyObject
*self
, PyObject
*args
) {
8048 PyObject
*resultobj
;
8049 ob::Openbox
*arg1
= (ob::Openbox
*) 0 ;
8051 PyObject
* obj0
= 0 ;
8052 PyObject
* obj1
= 0 ;
8054 if(!PyArg_ParseTuple(args
,(char *)"OO:Openbox_removeClient",&obj0
,&obj1
)) goto fail
;
8055 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Openbox
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8056 arg2
= (Window
) PyInt_AsLong(obj1
);
8057 if (PyErr_Occurred()) SWIG_fail
;
8058 (arg1
)->removeClient(arg2
);
8060 Py_INCREF(Py_None
); resultobj
= Py_None
;
8067 static PyObject
*_wrap_Openbox_findClient(PyObject
*self
, PyObject
*args
) {
8068 PyObject
*resultobj
;
8069 ob::Openbox
*arg1
= (ob::Openbox
*) 0 ;
8072 PyObject
* obj0
= 0 ;
8073 PyObject
* obj1
= 0 ;
8075 if(!PyArg_ParseTuple(args
,(char *)"OO:Openbox_findClient",&obj0
,&obj1
)) goto fail
;
8076 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Openbox
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8077 arg2
= (Window
) PyInt_AsLong(obj1
);
8078 if (PyErr_Occurred()) SWIG_fail
;
8079 result
= (ob::Client
*)(arg1
)->findClient(arg2
);
8081 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_ob__Client
, 0);
8088 static PyObject
*_wrap_Openbox_focusedClient(PyObject
*self
, PyObject
*args
) {
8089 PyObject
*resultobj
;
8090 ob::Openbox
*arg1
= (ob::Openbox
*) 0 ;
8092 PyObject
* obj0
= 0 ;
8094 if(!PyArg_ParseTuple(args
,(char *)"O:Openbox_focusedClient",&obj0
)) goto fail
;
8095 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Openbox
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8096 result
= (ob::Client
*)(arg1
)->focusedClient();
8098 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_ob__Client
, 0);
8105 static PyObject
*_wrap_Openbox_setFocusedClient(PyObject
*self
, PyObject
*args
) {
8106 PyObject
*resultobj
;
8107 ob::Openbox
*arg1
= (ob::Openbox
*) 0 ;
8108 ob::Client
*arg2
= (ob::Client
*) 0 ;
8109 PyObject
* obj0
= 0 ;
8110 PyObject
* obj1
= 0 ;
8112 if(!PyArg_ParseTuple(args
,(char *)"OO:Openbox_setFocusedClient",&obj0
,&obj1
)) goto fail
;
8113 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Openbox
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8114 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8115 (arg1
)->setFocusedClient(arg2
);
8117 Py_INCREF(Py_None
); resultobj
= Py_None
;
8124 static PyObject
*_wrap_Openbox_focusedScreen(PyObject
*self
, PyObject
*args
) {
8125 PyObject
*resultobj
;
8126 ob::Openbox
*arg1
= (ob::Openbox
*) 0 ;
8128 PyObject
* obj0
= 0 ;
8130 if(!PyArg_ParseTuple(args
,(char *)"O:Openbox_focusedScreen",&obj0
)) goto fail
;
8131 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Openbox
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8132 result
= (ob::Screen
*)(arg1
)->focusedScreen();
8134 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_ob__Screen
, 0);
8141 static PyObject
*_wrap_Openbox_shutdown(PyObject
*self
, PyObject
*args
) {
8142 PyObject
*resultobj
;
8143 ob::Openbox
*arg1
= (ob::Openbox
*) 0 ;
8144 PyObject
* obj0
= 0 ;
8146 if(!PyArg_ParseTuple(args
,(char *)"O:Openbox_shutdown",&obj0
)) goto fail
;
8147 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Openbox
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8150 Py_INCREF(Py_None
); resultobj
= Py_None
;
8157 static PyObject
*_wrap_Openbox_restart(PyObject
*self
, PyObject
*args
) {
8158 PyObject
*resultobj
;
8159 ob::Openbox
*arg1
= (ob::Openbox
*) 0 ;
8160 std::string
const &arg2_defvalue
= "" ;
8161 std::string
*arg2
= (std::string
*) &arg2_defvalue
;
8163 PyObject
* obj0
= 0 ;
8164 PyObject
* obj1
= 0 ;
8166 if(!PyArg_ParseTuple(args
,(char *)"O|O:Openbox_restart",&obj0
,&obj1
)) goto fail
;
8167 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Openbox
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8170 if (PyString_Check(obj1
)) {
8171 temp2
= std::string(PyString_AsString(obj1
));
8174 SWIG_exception(SWIG_TypeError
, "string expected");
8178 (arg1
)->restart((std::string
const &)*arg2
);
8180 Py_INCREF(Py_None
); resultobj
= Py_None
;
8187 static PyObject
*_wrap_Openbox_execute(PyObject
*self
, PyObject
*args
) {
8188 PyObject
*resultobj
;
8189 ob::Openbox
*arg1
= (ob::Openbox
*) 0 ;
8191 std::string
*arg3
= 0 ;
8193 PyObject
* obj0
= 0 ;
8194 PyObject
* obj2
= 0 ;
8196 if(!PyArg_ParseTuple(args
,(char *)"OiO:Openbox_execute",&obj0
,&arg2
,&obj2
)) goto fail
;
8197 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Openbox
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8199 if (PyString_Check(obj2
)) {
8200 temp3
= std::string(PyString_AsString(obj2
));
8203 SWIG_exception(SWIG_TypeError
, "string expected");
8206 (arg1
)->execute(arg2
,(std::string
const &)*arg3
);
8208 Py_INCREF(Py_None
); resultobj
= Py_None
;
8215 static PyObject
* Openbox_swigregister(PyObject
*self
, PyObject
*args
) {
8217 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
8218 SWIG_TypeClientData(SWIGTYPE_p_ob__Openbox
, obj
);
8220 return Py_BuildValue((char *)"");
8222 static PyObject
*_wrap_Screen_client(PyObject
*self
, PyObject
*args
) {
8223 PyObject
*resultobj
;
8224 ob::Screen
*arg1
= (ob::Screen
*) 0 ;
8227 PyObject
* obj0
= 0 ;
8229 if(!PyArg_ParseTuple(args
,(char *)"Oi:Screen_client",&obj0
,&arg2
)) goto fail
;
8230 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Screen
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8231 result
= (ob::Client
*)ob_Screen_client(arg1
,arg2
);
8233 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_ob__Client
, 0);
8240 static PyObject
*_wrap_Screen_clientCount(PyObject
*self
, PyObject
*args
) {
8241 PyObject
*resultobj
;
8242 ob::Screen
*arg1
= (ob::Screen
*) 0 ;
8244 PyObject
* obj0
= 0 ;
8246 if(!PyArg_ParseTuple(args
,(char *)"O:Screen_clientCount",&obj0
)) goto fail
;
8247 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Screen
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8248 result
= (int)ob_Screen_clientCount((ob::Screen
const *)arg1
);
8250 resultobj
= PyInt_FromLong((long)result
);
8257 static PyObject
*_wrap_Screen_number(PyObject
*self
, PyObject
*args
) {
8258 PyObject
*resultobj
;
8259 ob::Screen
*arg1
= (ob::Screen
*) 0 ;
8261 PyObject
* obj0
= 0 ;
8263 if(!PyArg_ParseTuple(args
,(char *)"O:Screen_number",&obj0
)) goto fail
;
8264 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Screen
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8265 result
= (int)((ob::Screen
const *)arg1
)->number();
8267 resultobj
= PyInt_FromLong((long)result
);
8274 static PyObject
*_wrap_Screen_managed(PyObject
*self
, PyObject
*args
) {
8275 PyObject
*resultobj
;
8276 ob::Screen
*arg1
= (ob::Screen
*) 0 ;
8278 PyObject
* obj0
= 0 ;
8280 if(!PyArg_ParseTuple(args
,(char *)"O:Screen_managed",&obj0
)) goto fail
;
8281 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Screen
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8282 result
= (bool)((ob::Screen
const *)arg1
)->managed();
8284 resultobj
= PyInt_FromLong((long)result
);
8291 static PyObject
*_wrap_Screen_area(PyObject
*self
, PyObject
*args
) {
8292 PyObject
*resultobj
;
8293 ob::Screen
*arg1
= (ob::Screen
*) 0 ;
8295 PyObject
* obj0
= 0 ;
8297 if(!PyArg_ParseTuple(args
,(char *)"O:Screen_area",&obj0
)) goto fail
;
8298 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Screen
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8300 otk::Rect
const &_result_ref
= ((ob::Screen
const *)arg1
)->area();
8301 result
= (otk::Rect
*) &_result_ref
;
8304 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Rect
, 0);
8311 static PyObject
*_wrap_Screen_style(PyObject
*self
, PyObject
*args
) {
8312 PyObject
*resultobj
;
8313 ob::Screen
*arg1
= (ob::Screen
*) 0 ;
8314 otk::RenderStyle
*result
;
8315 PyObject
* obj0
= 0 ;
8317 if(!PyArg_ParseTuple(args
,(char *)"O:Screen_style",&obj0
)) goto fail
;
8318 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Screen
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8319 result
= (otk::RenderStyle
*)((ob::Screen
const *)arg1
)->style();
8321 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__RenderStyle
, 0);
8328 static PyObject
*_wrap_Screen_focuswindow(PyObject
*self
, PyObject
*args
) {
8329 PyObject
*resultobj
;
8330 ob::Screen
*arg1
= (ob::Screen
*) 0 ;
8332 PyObject
* obj0
= 0 ;
8334 if(!PyArg_ParseTuple(args
,(char *)"O:Screen_focuswindow",&obj0
)) goto fail
;
8335 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Screen
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8336 result
= (Window
)((ob::Screen
const *)arg1
)->focuswindow();
8338 resultobj
= PyInt_FromLong((long)result
);
8345 static PyObject
*_wrap_Screen_desktop(PyObject
*self
, PyObject
*args
) {
8346 PyObject
*resultobj
;
8347 ob::Screen
*arg1
= (ob::Screen
*) 0 ;
8349 PyObject
* obj0
= 0 ;
8351 if(!PyArg_ParseTuple(args
,(char *)"O:Screen_desktop",&obj0
)) goto fail
;
8352 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Screen
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8353 result
= (long)((ob::Screen
const *)arg1
)->desktop();
8355 resultobj
= PyInt_FromLong((long)result
);
8362 static PyObject
*_wrap_Screen_numDesktops(PyObject
*self
, PyObject
*args
) {
8363 PyObject
*resultobj
;
8364 ob::Screen
*arg1
= (ob::Screen
*) 0 ;
8366 PyObject
* obj0
= 0 ;
8368 if(!PyArg_ParseTuple(args
,(char *)"O:Screen_numDesktops",&obj0
)) goto fail
;
8369 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Screen
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8370 result
= (long)((ob::Screen
const *)arg1
)->numDesktops();
8372 resultobj
= PyInt_FromLong((long)result
);
8379 static PyObject
*_wrap_Screen_updateStrut(PyObject
*self
, PyObject
*args
) {
8380 PyObject
*resultobj
;
8381 ob::Screen
*arg1
= (ob::Screen
*) 0 ;
8382 PyObject
* obj0
= 0 ;
8384 if(!PyArg_ParseTuple(args
,(char *)"O:Screen_updateStrut",&obj0
)) goto fail
;
8385 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Screen
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8386 (arg1
)->updateStrut();
8388 Py_INCREF(Py_None
); resultobj
= Py_None
;
8395 static PyObject
*_wrap_Screen_manageExisting(PyObject
*self
, PyObject
*args
) {
8396 PyObject
*resultobj
;
8397 ob::Screen
*arg1
= (ob::Screen
*) 0 ;
8398 PyObject
* obj0
= 0 ;
8400 if(!PyArg_ParseTuple(args
,(char *)"O:Screen_manageExisting",&obj0
)) goto fail
;
8401 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Screen
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8402 (arg1
)->manageExisting();
8404 Py_INCREF(Py_None
); resultobj
= Py_None
;
8411 static PyObject
*_wrap_Screen_manageWindow(PyObject
*self
, PyObject
*args
) {
8412 PyObject
*resultobj
;
8413 ob::Screen
*arg1
= (ob::Screen
*) 0 ;
8415 PyObject
* obj0
= 0 ;
8416 PyObject
* obj1
= 0 ;
8418 if(!PyArg_ParseTuple(args
,(char *)"OO:Screen_manageWindow",&obj0
,&obj1
)) goto fail
;
8419 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Screen
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8420 arg2
= (Window
) PyInt_AsLong(obj1
);
8421 if (PyErr_Occurred()) SWIG_fail
;
8422 (arg1
)->manageWindow(arg2
);
8424 Py_INCREF(Py_None
); resultobj
= Py_None
;
8431 static PyObject
*_wrap_Screen_unmanageWindow(PyObject
*self
, PyObject
*args
) {
8432 PyObject
*resultobj
;
8433 ob::Screen
*arg1
= (ob::Screen
*) 0 ;
8434 ob::Client
*arg2
= (ob::Client
*) 0 ;
8435 PyObject
* obj0
= 0 ;
8436 PyObject
* obj1
= 0 ;
8438 if(!PyArg_ParseTuple(args
,(char *)"OO:Screen_unmanageWindow",&obj0
,&obj1
)) goto fail
;
8439 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Screen
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8440 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8441 (arg1
)->unmanageWindow(arg2
);
8443 Py_INCREF(Py_None
); resultobj
= Py_None
;
8450 static PyObject
*_wrap_Screen_raiseWindow(PyObject
*self
, PyObject
*args
) {
8451 PyObject
*resultobj
;
8452 ob::Screen
*arg1
= (ob::Screen
*) 0 ;
8453 ob::Client
*arg2
= (ob::Client
*) 0 ;
8454 PyObject
* obj0
= 0 ;
8455 PyObject
* obj1
= 0 ;
8457 if(!PyArg_ParseTuple(args
,(char *)"OO:Screen_raiseWindow",&obj0
,&obj1
)) goto fail
;
8458 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Screen
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8459 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8460 (arg1
)->raiseWindow(arg2
);
8462 Py_INCREF(Py_None
); resultobj
= Py_None
;
8469 static PyObject
*_wrap_Screen_lowerWindow(PyObject
*self
, PyObject
*args
) {
8470 PyObject
*resultobj
;
8471 ob::Screen
*arg1
= (ob::Screen
*) 0 ;
8472 ob::Client
*arg2
= (ob::Client
*) 0 ;
8473 PyObject
* obj0
= 0 ;
8474 PyObject
* obj1
= 0 ;
8476 if(!PyArg_ParseTuple(args
,(char *)"OO:Screen_lowerWindow",&obj0
,&obj1
)) goto fail
;
8477 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Screen
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8478 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8479 (arg1
)->lowerWindow(arg2
);
8481 Py_INCREF(Py_None
); resultobj
= Py_None
;
8488 static PyObject
*_wrap_Screen_setDesktopName(PyObject
*self
, PyObject
*args
) {
8489 PyObject
*resultobj
;
8490 ob::Screen
*arg1
= (ob::Screen
*) 0 ;
8492 otk::ustring
*arg3
= 0 ;
8493 otk::ustring temp3
;
8494 PyObject
* obj0
= 0 ;
8495 PyObject
* obj2
= 0 ;
8497 if(!PyArg_ParseTuple(args
,(char *)"OlO:Screen_setDesktopName",&obj0
,&arg2
,&obj2
)) goto fail
;
8498 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Screen
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8500 if (PyString_Check(obj2
)) {
8501 temp3
= otk::ustring(PyString_AsString(obj2
));
8504 SWIG_exception(SWIG_TypeError
, "ustring expected");
8507 (arg1
)->setDesktopName(arg2
,(otk::ustring
const &)*arg3
);
8509 Py_INCREF(Py_None
); resultobj
= Py_None
;
8516 static PyObject
*_wrap_Screen_propertyHandler(PyObject
*self
, PyObject
*args
) {
8517 PyObject
*resultobj
;
8518 ob::Screen
*arg1
= (ob::Screen
*) 0 ;
8519 XPropertyEvent
*arg2
= 0 ;
8520 PyObject
* obj0
= 0 ;
8521 PyObject
* obj1
= 0 ;
8523 if(!PyArg_ParseTuple(args
,(char *)"OO:Screen_propertyHandler",&obj0
,&obj1
)) goto fail
;
8524 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Screen
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8525 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XPropertyEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8527 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
8529 (arg1
)->propertyHandler((XPropertyEvent
const &)*arg2
);
8531 Py_INCREF(Py_None
); resultobj
= Py_None
;
8538 static PyObject
*_wrap_Screen_clientMessageHandler(PyObject
*self
, PyObject
*args
) {
8539 PyObject
*resultobj
;
8540 ob::Screen
*arg1
= (ob::Screen
*) 0 ;
8541 XClientMessageEvent
*arg2
= 0 ;
8542 PyObject
* obj0
= 0 ;
8543 PyObject
* obj1
= 0 ;
8545 if(!PyArg_ParseTuple(args
,(char *)"OO:Screen_clientMessageHandler",&obj0
,&obj1
)) goto fail
;
8546 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Screen
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8547 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XClientMessageEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8549 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
8551 (arg1
)->clientMessageHandler((XClientMessageEvent
const &)*arg2
);
8553 Py_INCREF(Py_None
); resultobj
= Py_None
;
8560 static PyObject
*_wrap_Screen_mapRequestHandler(PyObject
*self
, PyObject
*args
) {
8561 PyObject
*resultobj
;
8562 ob::Screen
*arg1
= (ob::Screen
*) 0 ;
8563 XMapRequestEvent
*arg2
= 0 ;
8564 PyObject
* obj0
= 0 ;
8565 PyObject
* obj1
= 0 ;
8567 if(!PyArg_ParseTuple(args
,(char *)"OO:Screen_mapRequestHandler",&obj0
,&obj1
)) goto fail
;
8568 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Screen
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8569 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XMapRequestEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8571 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
8573 (arg1
)->mapRequestHandler((XMapRequestEvent
const &)*arg2
);
8575 Py_INCREF(Py_None
); resultobj
= Py_None
;
8582 static PyObject
* Screen_swigregister(PyObject
*self
, PyObject
*args
) {
8584 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
8585 SWIG_TypeClientData(SWIGTYPE_p_ob__Screen
, obj
);
8587 return Py_BuildValue((char *)"");
8589 static PyObject
*_wrap_MwmHints_flags_set(PyObject
*self
, PyObject
*args
) {
8590 PyObject
*resultobj
;
8591 ob::MwmHints
*arg1
= (ob::MwmHints
*) 0 ;
8592 unsigned long arg2
;
8593 PyObject
* obj0
= 0 ;
8594 PyObject
* obj1
= 0 ;
8596 if(!PyArg_ParseTuple(args
,(char *)"OO:MwmHints_flags_set",&obj0
,&obj1
)) goto fail
;
8597 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__MwmHints
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8598 arg2
= (unsigned long) PyInt_AsLong(obj1
);
8599 if (PyErr_Occurred()) SWIG_fail
;
8600 if (arg1
) (arg1
)->flags
= arg2
;
8602 Py_INCREF(Py_None
); resultobj
= Py_None
;
8609 static PyObject
*_wrap_MwmHints_flags_get(PyObject
*self
, PyObject
*args
) {
8610 PyObject
*resultobj
;
8611 ob::MwmHints
*arg1
= (ob::MwmHints
*) 0 ;
8612 unsigned long result
;
8613 PyObject
* obj0
= 0 ;
8615 if(!PyArg_ParseTuple(args
,(char *)"O:MwmHints_flags_get",&obj0
)) goto fail
;
8616 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__MwmHints
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8617 result
= (unsigned long) ((arg1
)->flags
);
8619 resultobj
= PyInt_FromLong((long)result
);
8626 static PyObject
*_wrap_MwmHints_functions_set(PyObject
*self
, PyObject
*args
) {
8627 PyObject
*resultobj
;
8628 ob::MwmHints
*arg1
= (ob::MwmHints
*) 0 ;
8629 unsigned long arg2
;
8630 PyObject
* obj0
= 0 ;
8631 PyObject
* obj1
= 0 ;
8633 if(!PyArg_ParseTuple(args
,(char *)"OO:MwmHints_functions_set",&obj0
,&obj1
)) goto fail
;
8634 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__MwmHints
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8635 arg2
= (unsigned long) PyInt_AsLong(obj1
);
8636 if (PyErr_Occurred()) SWIG_fail
;
8637 if (arg1
) (arg1
)->functions
= arg2
;
8639 Py_INCREF(Py_None
); resultobj
= Py_None
;
8646 static PyObject
*_wrap_MwmHints_functions_get(PyObject
*self
, PyObject
*args
) {
8647 PyObject
*resultobj
;
8648 ob::MwmHints
*arg1
= (ob::MwmHints
*) 0 ;
8649 unsigned long result
;
8650 PyObject
* obj0
= 0 ;
8652 if(!PyArg_ParseTuple(args
,(char *)"O:MwmHints_functions_get",&obj0
)) goto fail
;
8653 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__MwmHints
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8654 result
= (unsigned long) ((arg1
)->functions
);
8656 resultobj
= PyInt_FromLong((long)result
);
8663 static PyObject
*_wrap_MwmHints_decorations_set(PyObject
*self
, PyObject
*args
) {
8664 PyObject
*resultobj
;
8665 ob::MwmHints
*arg1
= (ob::MwmHints
*) 0 ;
8666 unsigned long arg2
;
8667 PyObject
* obj0
= 0 ;
8668 PyObject
* obj1
= 0 ;
8670 if(!PyArg_ParseTuple(args
,(char *)"OO:MwmHints_decorations_set",&obj0
,&obj1
)) goto fail
;
8671 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__MwmHints
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8672 arg2
= (unsigned long) PyInt_AsLong(obj1
);
8673 if (PyErr_Occurred()) SWIG_fail
;
8674 if (arg1
) (arg1
)->decorations
= arg2
;
8676 Py_INCREF(Py_None
); resultobj
= Py_None
;
8683 static PyObject
*_wrap_MwmHints_decorations_get(PyObject
*self
, PyObject
*args
) {
8684 PyObject
*resultobj
;
8685 ob::MwmHints
*arg1
= (ob::MwmHints
*) 0 ;
8686 unsigned long result
;
8687 PyObject
* obj0
= 0 ;
8689 if(!PyArg_ParseTuple(args
,(char *)"O:MwmHints_decorations_get",&obj0
)) goto fail
;
8690 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__MwmHints
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8691 result
= (unsigned long) ((arg1
)->decorations
);
8693 resultobj
= PyInt_FromLong((long)result
);
8700 static PyObject
* MwmHints_swigregister(PyObject
*self
, PyObject
*args
) {
8702 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
8703 SWIG_TypeClientData(SWIGTYPE_p_ob__MwmHints
, obj
);
8705 return Py_BuildValue((char *)"");
8707 static PyObject
*_wrap_Client_frame_set(PyObject
*self
, PyObject
*args
) {
8708 PyObject
*resultobj
;
8709 ob::Client
*arg1
= (ob::Client
*) 0 ;
8710 ob::Frame
*arg2
= (ob::Frame
*) 0 ;
8711 PyObject
* obj0
= 0 ;
8712 PyObject
* obj1
= 0 ;
8714 if(!PyArg_ParseTuple(args
,(char *)"OO:Client_frame_set",&obj0
,&obj1
)) goto fail
;
8715 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8716 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_ob__Frame
,SWIG_POINTER_EXCEPTION
| SWIG_POINTER_DISOWN
)) == -1) SWIG_fail
;
8717 if (arg1
) (arg1
)->frame
= arg2
;
8719 Py_INCREF(Py_None
); resultobj
= Py_None
;
8726 static PyObject
*_wrap_Client_frame_get(PyObject
*self
, PyObject
*args
) {
8727 PyObject
*resultobj
;
8728 ob::Client
*arg1
= (ob::Client
*) 0 ;
8730 PyObject
* obj0
= 0 ;
8732 if(!PyArg_ParseTuple(args
,(char *)"O:Client_frame_get",&obj0
)) goto fail
;
8733 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8734 result
= (ob::Frame
*) ((arg1
)->frame
);
8736 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_ob__Frame
, 0);
8743 static PyObject
*_wrap_Client_ignore_unmaps_set(PyObject
*self
, PyObject
*args
) {
8744 PyObject
*resultobj
;
8745 ob::Client
*arg1
= (ob::Client
*) 0 ;
8747 PyObject
* obj0
= 0 ;
8749 if(!PyArg_ParseTuple(args
,(char *)"Oi:Client_ignore_unmaps_set",&obj0
,&arg2
)) goto fail
;
8750 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8751 if (arg1
) (arg1
)->ignore_unmaps
= arg2
;
8753 Py_INCREF(Py_None
); resultobj
= Py_None
;
8760 static PyObject
*_wrap_Client_ignore_unmaps_get(PyObject
*self
, PyObject
*args
) {
8761 PyObject
*resultobj
;
8762 ob::Client
*arg1
= (ob::Client
*) 0 ;
8764 PyObject
* obj0
= 0 ;
8766 if(!PyArg_ParseTuple(args
,(char *)"O:Client_ignore_unmaps_get",&obj0
)) goto fail
;
8767 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8768 result
= (int) ((arg1
)->ignore_unmaps
);
8770 resultobj
= PyInt_FromLong((long)result
);
8777 static PyObject
*_wrap_Client_screen(PyObject
*self
, PyObject
*args
) {
8778 PyObject
*resultobj
;
8779 ob::Client
*arg1
= (ob::Client
*) 0 ;
8781 PyObject
* obj0
= 0 ;
8783 if(!PyArg_ParseTuple(args
,(char *)"O:Client_screen",&obj0
)) goto fail
;
8784 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8785 result
= (int)((ob::Client
const *)arg1
)->screen();
8787 resultobj
= PyInt_FromLong((long)result
);
8794 static PyObject
*_wrap_Client_window(PyObject
*self
, PyObject
*args
) {
8795 PyObject
*resultobj
;
8796 ob::Client
*arg1
= (ob::Client
*) 0 ;
8798 PyObject
* obj0
= 0 ;
8800 if(!PyArg_ParseTuple(args
,(char *)"O:Client_window",&obj0
)) goto fail
;
8801 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8802 result
= (Window
)((ob::Client
const *)arg1
)->window();
8804 resultobj
= PyInt_FromLong((long)result
);
8811 static PyObject
*_wrap_Client_type(PyObject
*self
, PyObject
*args
) {
8812 PyObject
*resultobj
;
8813 ob::Client
*arg1
= (ob::Client
*) 0 ;
8815 PyObject
* obj0
= 0 ;
8817 if(!PyArg_ParseTuple(args
,(char *)"O:Client_type",&obj0
)) goto fail
;
8818 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8819 result
= (int)((ob::Client
const *)arg1
)->type();
8821 resultobj
= PyInt_FromLong((long)result
);
8828 static PyObject
*_wrap_Client_normal(PyObject
*self
, PyObject
*args
) {
8829 PyObject
*resultobj
;
8830 ob::Client
*arg1
= (ob::Client
*) 0 ;
8832 PyObject
* obj0
= 0 ;
8834 if(!PyArg_ParseTuple(args
,(char *)"O:Client_normal",&obj0
)) goto fail
;
8835 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8836 result
= (bool)((ob::Client
const *)arg1
)->normal();
8838 resultobj
= PyInt_FromLong((long)result
);
8845 static PyObject
*_wrap_Client_desktop(PyObject
*self
, PyObject
*args
) {
8846 PyObject
*resultobj
;
8847 ob::Client
*arg1
= (ob::Client
*) 0 ;
8849 PyObject
* obj0
= 0 ;
8851 if(!PyArg_ParseTuple(args
,(char *)"O:Client_desktop",&obj0
)) goto fail
;
8852 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8853 result
= (long)((ob::Client
const *)arg1
)->desktop();
8855 resultobj
= PyInt_FromLong((long)result
);
8862 static PyObject
*_wrap_Client_title(PyObject
*self
, PyObject
*args
) {
8863 PyObject
*resultobj
;
8864 ob::Client
*arg1
= (ob::Client
*) 0 ;
8865 otk::ustring
*result
;
8866 PyObject
* obj0
= 0 ;
8868 if(!PyArg_ParseTuple(args
,(char *)"O:Client_title",&obj0
)) goto fail
;
8869 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8871 otk::ustring
const &_result_ref
= ((ob::Client
const *)arg1
)->title();
8872 result
= (otk::ustring
*) &_result_ref
;
8876 resultobj
= PyString_FromString(result
->c_str());
8884 static PyObject
*_wrap_Client_iconTitle(PyObject
*self
, PyObject
*args
) {
8885 PyObject
*resultobj
;
8886 ob::Client
*arg1
= (ob::Client
*) 0 ;
8887 otk::ustring
*result
;
8888 PyObject
* obj0
= 0 ;
8890 if(!PyArg_ParseTuple(args
,(char *)"O:Client_iconTitle",&obj0
)) goto fail
;
8891 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8893 otk::ustring
const &_result_ref
= ((ob::Client
const *)arg1
)->iconTitle();
8894 result
= (otk::ustring
*) &_result_ref
;
8898 resultobj
= PyString_FromString(result
->c_str());
8906 static PyObject
*_wrap_Client_appName(PyObject
*self
, PyObject
*args
) {
8907 PyObject
*resultobj
;
8908 ob::Client
*arg1
= (ob::Client
*) 0 ;
8909 std::string
*result
;
8910 PyObject
* obj0
= 0 ;
8912 if(!PyArg_ParseTuple(args
,(char *)"O:Client_appName",&obj0
)) goto fail
;
8913 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8915 std::string
const &_result_ref
= ((ob::Client
const *)arg1
)->appName();
8916 result
= (std::string
*) &_result_ref
;
8920 resultobj
= PyString_FromString(result
->c_str());
8928 static PyObject
*_wrap_Client_appClass(PyObject
*self
, PyObject
*args
) {
8929 PyObject
*resultobj
;
8930 ob::Client
*arg1
= (ob::Client
*) 0 ;
8931 std::string
*result
;
8932 PyObject
* obj0
= 0 ;
8934 if(!PyArg_ParseTuple(args
,(char *)"O:Client_appClass",&obj0
)) goto fail
;
8935 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8937 std::string
const &_result_ref
= ((ob::Client
const *)arg1
)->appClass();
8938 result
= (std::string
*) &_result_ref
;
8942 resultobj
= PyString_FromString(result
->c_str());
8950 static PyObject
*_wrap_Client_role(PyObject
*self
, PyObject
*args
) {
8951 PyObject
*resultobj
;
8952 ob::Client
*arg1
= (ob::Client
*) 0 ;
8953 std::string
*result
;
8954 PyObject
* obj0
= 0 ;
8956 if(!PyArg_ParseTuple(args
,(char *)"O:Client_role",&obj0
)) goto fail
;
8957 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8959 std::string
const &_result_ref
= ((ob::Client
const *)arg1
)->role();
8960 result
= (std::string
*) &_result_ref
;
8964 resultobj
= PyString_FromString(result
->c_str());
8972 static PyObject
*_wrap_Client_canFocus(PyObject
*self
, PyObject
*args
) {
8973 PyObject
*resultobj
;
8974 ob::Client
*arg1
= (ob::Client
*) 0 ;
8976 PyObject
* obj0
= 0 ;
8978 if(!PyArg_ParseTuple(args
,(char *)"O:Client_canFocus",&obj0
)) goto fail
;
8979 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8980 result
= (bool)((ob::Client
const *)arg1
)->canFocus();
8982 resultobj
= PyInt_FromLong((long)result
);
8989 static PyObject
*_wrap_Client_urgent(PyObject
*self
, PyObject
*args
) {
8990 PyObject
*resultobj
;
8991 ob::Client
*arg1
= (ob::Client
*) 0 ;
8993 PyObject
* obj0
= 0 ;
8995 if(!PyArg_ParseTuple(args
,(char *)"O:Client_urgent",&obj0
)) goto fail
;
8996 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
8997 result
= (bool)((ob::Client
const *)arg1
)->urgent();
8999 resultobj
= PyInt_FromLong((long)result
);
9006 static PyObject
*_wrap_Client_focusNotify(PyObject
*self
, PyObject
*args
) {
9007 PyObject
*resultobj
;
9008 ob::Client
*arg1
= (ob::Client
*) 0 ;
9010 PyObject
* obj0
= 0 ;
9012 if(!PyArg_ParseTuple(args
,(char *)"O:Client_focusNotify",&obj0
)) goto fail
;
9013 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9014 result
= (bool)((ob::Client
const *)arg1
)->focusNotify();
9016 resultobj
= PyInt_FromLong((long)result
);
9023 static PyObject
*_wrap_Client_shaped(PyObject
*self
, PyObject
*args
) {
9024 PyObject
*resultobj
;
9025 ob::Client
*arg1
= (ob::Client
*) 0 ;
9027 PyObject
* obj0
= 0 ;
9029 if(!PyArg_ParseTuple(args
,(char *)"O:Client_shaped",&obj0
)) goto fail
;
9030 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9031 result
= (bool)((ob::Client
const *)arg1
)->shaped();
9033 resultobj
= PyInt_FromLong((long)result
);
9040 static PyObject
*_wrap_Client_gravity(PyObject
*self
, PyObject
*args
) {
9041 PyObject
*resultobj
;
9042 ob::Client
*arg1
= (ob::Client
*) 0 ;
9044 PyObject
* obj0
= 0 ;
9046 if(!PyArg_ParseTuple(args
,(char *)"O:Client_gravity",&obj0
)) goto fail
;
9047 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9048 result
= (int)((ob::Client
const *)arg1
)->gravity();
9050 resultobj
= PyInt_FromLong((long)result
);
9057 static PyObject
*_wrap_Client_positionRequested(PyObject
*self
, PyObject
*args
) {
9058 PyObject
*resultobj
;
9059 ob::Client
*arg1
= (ob::Client
*) 0 ;
9061 PyObject
* obj0
= 0 ;
9063 if(!PyArg_ParseTuple(args
,(char *)"O:Client_positionRequested",&obj0
)) goto fail
;
9064 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9065 result
= (bool)((ob::Client
const *)arg1
)->positionRequested();
9067 resultobj
= PyInt_FromLong((long)result
);
9074 static PyObject
*_wrap_Client_decorations(PyObject
*self
, PyObject
*args
) {
9075 PyObject
*resultobj
;
9076 ob::Client
*arg1
= (ob::Client
*) 0 ;
9077 ob::Client::DecorationFlags result
;
9078 PyObject
* obj0
= 0 ;
9080 if(!PyArg_ParseTuple(args
,(char *)"O:Client_decorations",&obj0
)) goto fail
;
9081 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9082 result
= (ob::Client::DecorationFlags
)((ob::Client
const *)arg1
)->decorations();
9084 resultobj
= PyInt_FromLong((long)result
);
9091 static PyObject
*_wrap_Client_funtions(PyObject
*self
, PyObject
*args
) {
9092 PyObject
*resultobj
;
9093 ob::Client
*arg1
= (ob::Client
*) 0 ;
9094 ob::Client::FunctionFlags result
;
9095 PyObject
* obj0
= 0 ;
9097 if(!PyArg_ParseTuple(args
,(char *)"O:Client_funtions",&obj0
)) goto fail
;
9098 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9099 result
= (ob::Client::FunctionFlags
)((ob::Client
const *)arg1
)->funtions();
9101 resultobj
= PyInt_FromLong((long)result
);
9108 static PyObject
*_wrap_Client_transientFor(PyObject
*self
, PyObject
*args
) {
9109 PyObject
*resultobj
;
9110 ob::Client
*arg1
= (ob::Client
*) 0 ;
9112 PyObject
* obj0
= 0 ;
9114 if(!PyArg_ParseTuple(args
,(char *)"O:Client_transientFor",&obj0
)) goto fail
;
9115 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9116 result
= (ob::Client
*)((ob::Client
const *)arg1
)->transientFor();
9118 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_ob__Client
, 0);
9125 static PyObject
*_wrap_Client_modal(PyObject
*self
, PyObject
*args
) {
9126 PyObject
*resultobj
;
9127 ob::Client
*arg1
= (ob::Client
*) 0 ;
9129 PyObject
* obj0
= 0 ;
9131 if(!PyArg_ParseTuple(args
,(char *)"O:Client_modal",&obj0
)) goto fail
;
9132 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9133 result
= (bool)((ob::Client
const *)arg1
)->modal();
9135 resultobj
= PyInt_FromLong((long)result
);
9142 static PyObject
*_wrap_Client_shaded(PyObject
*self
, PyObject
*args
) {
9143 PyObject
*resultobj
;
9144 ob::Client
*arg1
= (ob::Client
*) 0 ;
9146 PyObject
* obj0
= 0 ;
9148 if(!PyArg_ParseTuple(args
,(char *)"O:Client_shaded",&obj0
)) goto fail
;
9149 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9150 result
= (bool)((ob::Client
const *)arg1
)->shaded();
9152 resultobj
= PyInt_FromLong((long)result
);
9159 static PyObject
*_wrap_Client_fullscreen(PyObject
*self
, PyObject
*args
) {
9160 PyObject
*resultobj
;
9161 ob::Client
*arg1
= (ob::Client
*) 0 ;
9163 PyObject
* obj0
= 0 ;
9165 if(!PyArg_ParseTuple(args
,(char *)"O:Client_fullscreen",&obj0
)) goto fail
;
9166 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9167 result
= (bool)((ob::Client
const *)arg1
)->fullscreen();
9169 resultobj
= PyInt_FromLong((long)result
);
9176 static PyObject
*_wrap_Client_iconic(PyObject
*self
, PyObject
*args
) {
9177 PyObject
*resultobj
;
9178 ob::Client
*arg1
= (ob::Client
*) 0 ;
9180 PyObject
* obj0
= 0 ;
9182 if(!PyArg_ParseTuple(args
,(char *)"O:Client_iconic",&obj0
)) goto fail
;
9183 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9184 result
= (bool)((ob::Client
const *)arg1
)->iconic();
9186 resultobj
= PyInt_FromLong((long)result
);
9193 static PyObject
*_wrap_Client_maxVert(PyObject
*self
, PyObject
*args
) {
9194 PyObject
*resultobj
;
9195 ob::Client
*arg1
= (ob::Client
*) 0 ;
9197 PyObject
* obj0
= 0 ;
9199 if(!PyArg_ParseTuple(args
,(char *)"O:Client_maxVert",&obj0
)) goto fail
;
9200 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9201 result
= (bool)((ob::Client
const *)arg1
)->maxVert();
9203 resultobj
= PyInt_FromLong((long)result
);
9210 static PyObject
*_wrap_Client_maxHorz(PyObject
*self
, PyObject
*args
) {
9211 PyObject
*resultobj
;
9212 ob::Client
*arg1
= (ob::Client
*) 0 ;
9214 PyObject
* obj0
= 0 ;
9216 if(!PyArg_ParseTuple(args
,(char *)"O:Client_maxHorz",&obj0
)) goto fail
;
9217 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9218 result
= (bool)((ob::Client
const *)arg1
)->maxHorz();
9220 resultobj
= PyInt_FromLong((long)result
);
9227 static PyObject
*_wrap_Client_layer(PyObject
*self
, PyObject
*args
) {
9228 PyObject
*resultobj
;
9229 ob::Client
*arg1
= (ob::Client
*) 0 ;
9231 PyObject
* obj0
= 0 ;
9233 if(!PyArg_ParseTuple(args
,(char *)"O:Client_layer",&obj0
)) goto fail
;
9234 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9235 result
= (int)((ob::Client
const *)arg1
)->layer();
9237 resultobj
= PyInt_FromLong((long)result
);
9244 static PyObject
*_wrap_Client_applyStartupState(PyObject
*self
, PyObject
*args
) {
9245 PyObject
*resultobj
;
9246 ob::Client
*arg1
= (ob::Client
*) 0 ;
9247 PyObject
* obj0
= 0 ;
9249 if(!PyArg_ParseTuple(args
,(char *)"O:Client_applyStartupState",&obj0
)) goto fail
;
9250 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9251 (arg1
)->applyStartupState();
9253 Py_INCREF(Py_None
); resultobj
= Py_None
;
9260 static PyObject
*_wrap_Client_toggleClientBorder(PyObject
*self
, PyObject
*args
) {
9261 PyObject
*resultobj
;
9262 ob::Client
*arg1
= (ob::Client
*) 0 ;
9264 PyObject
* obj0
= 0 ;
9265 PyObject
* obj1
= 0 ;
9267 if(!PyArg_ParseTuple(args
,(char *)"OO:Client_toggleClientBorder",&obj0
,&obj1
)) goto fail
;
9268 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9269 arg2
= (bool) PyInt_AsLong(obj1
);
9270 if (PyErr_Occurred()) SWIG_fail
;
9271 (arg1
)->toggleClientBorder(arg2
);
9273 Py_INCREF(Py_None
); resultobj
= Py_None
;
9280 static PyObject
*_wrap_Client_area(PyObject
*self
, PyObject
*args
) {
9281 PyObject
*resultobj
;
9282 ob::Client
*arg1
= (ob::Client
*) 0 ;
9284 PyObject
* obj0
= 0 ;
9286 if(!PyArg_ParseTuple(args
,(char *)"O:Client_area",&obj0
)) goto fail
;
9287 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9289 otk::Rect
const &_result_ref
= ((ob::Client
const *)arg1
)->area();
9290 result
= (otk::Rect
*) &_result_ref
;
9293 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Rect
, 0);
9300 static PyObject
*_wrap_Client_strut(PyObject
*self
, PyObject
*args
) {
9301 PyObject
*resultobj
;
9302 ob::Client
*arg1
= (ob::Client
*) 0 ;
9304 PyObject
* obj0
= 0 ;
9306 if(!PyArg_ParseTuple(args
,(char *)"O:Client_strut",&obj0
)) goto fail
;
9307 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9309 otk::Strut
const &_result_ref
= ((ob::Client
const *)arg1
)->strut();
9310 result
= (otk::Strut
*) &_result_ref
;
9313 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Strut
, 0);
9320 static PyObject
*_wrap_Client_move(PyObject
*self
, PyObject
*args
) {
9321 PyObject
*resultobj
;
9322 ob::Client
*arg1
= (ob::Client
*) 0 ;
9325 PyObject
* obj0
= 0 ;
9327 if(!PyArg_ParseTuple(args
,(char *)"Oii:Client_move",&obj0
,&arg2
,&arg3
)) goto fail
;
9328 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9329 (arg1
)->move(arg2
,arg3
);
9331 Py_INCREF(Py_None
); resultobj
= Py_None
;
9338 static PyObject
*_wrap_Client_resize(PyObject
*self
, PyObject
*args
) {
9339 PyObject
*resultobj
;
9340 ob::Client
*arg1
= (ob::Client
*) 0 ;
9344 PyObject
* obj0
= 0 ;
9346 if(!PyArg_ParseTuple(args
,(char *)"Oiii:Client_resize",&obj0
,&arg2
,&arg3
,&arg4
)) goto fail
;
9347 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9348 (arg1
)->resize((ob::Client::Corner
)arg2
,arg3
,arg4
);
9350 Py_INCREF(Py_None
); resultobj
= Py_None
;
9357 static PyObject
*_wrap_Client_focus(PyObject
*self
, PyObject
*args
) {
9358 PyObject
*resultobj
;
9359 ob::Client
*arg1
= (ob::Client
*) 0 ;
9361 PyObject
* obj0
= 0 ;
9363 if(!PyArg_ParseTuple(args
,(char *)"O:Client_focus",&obj0
)) goto fail
;
9364 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9365 result
= (bool)(arg1
)->focus();
9367 resultobj
= PyInt_FromLong((long)result
);
9374 static PyObject
*_wrap_Client_unfocus(PyObject
*self
, PyObject
*args
) {
9375 PyObject
*resultobj
;
9376 ob::Client
*arg1
= (ob::Client
*) 0 ;
9377 PyObject
* obj0
= 0 ;
9379 if(!PyArg_ParseTuple(args
,(char *)"O:Client_unfocus",&obj0
)) goto fail
;
9380 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9381 ((ob::Client
const *)arg1
)->unfocus();
9383 Py_INCREF(Py_None
); resultobj
= Py_None
;
9390 static PyObject
*_wrap_Client_focusHandler(PyObject
*self
, PyObject
*args
) {
9391 PyObject
*resultobj
;
9392 ob::Client
*arg1
= (ob::Client
*) 0 ;
9393 XFocusChangeEvent
*arg2
= 0 ;
9394 PyObject
* obj0
= 0 ;
9395 PyObject
* obj1
= 0 ;
9397 if(!PyArg_ParseTuple(args
,(char *)"OO:Client_focusHandler",&obj0
,&obj1
)) goto fail
;
9398 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9399 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XFocusChangeEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9401 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
9403 (arg1
)->focusHandler((XFocusChangeEvent
const &)*arg2
);
9405 Py_INCREF(Py_None
); resultobj
= Py_None
;
9412 static PyObject
*_wrap_Client_unfocusHandler(PyObject
*self
, PyObject
*args
) {
9413 PyObject
*resultobj
;
9414 ob::Client
*arg1
= (ob::Client
*) 0 ;
9415 XFocusChangeEvent
*arg2
= 0 ;
9416 PyObject
* obj0
= 0 ;
9417 PyObject
* obj1
= 0 ;
9419 if(!PyArg_ParseTuple(args
,(char *)"OO:Client_unfocusHandler",&obj0
,&obj1
)) goto fail
;
9420 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9421 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XFocusChangeEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9423 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
9425 (arg1
)->unfocusHandler((XFocusChangeEvent
const &)*arg2
);
9427 Py_INCREF(Py_None
); resultobj
= Py_None
;
9434 static PyObject
*_wrap_Client_propertyHandler(PyObject
*self
, PyObject
*args
) {
9435 PyObject
*resultobj
;
9436 ob::Client
*arg1
= (ob::Client
*) 0 ;
9437 XPropertyEvent
*arg2
= 0 ;
9438 PyObject
* obj0
= 0 ;
9439 PyObject
* obj1
= 0 ;
9441 if(!PyArg_ParseTuple(args
,(char *)"OO:Client_propertyHandler",&obj0
,&obj1
)) goto fail
;
9442 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9443 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XPropertyEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9445 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
9447 (arg1
)->propertyHandler((XPropertyEvent
const &)*arg2
);
9449 Py_INCREF(Py_None
); resultobj
= Py_None
;
9456 static PyObject
*_wrap_Client_clientMessageHandler(PyObject
*self
, PyObject
*args
) {
9457 PyObject
*resultobj
;
9458 ob::Client
*arg1
= (ob::Client
*) 0 ;
9459 XClientMessageEvent
*arg2
= 0 ;
9460 PyObject
* obj0
= 0 ;
9461 PyObject
* obj1
= 0 ;
9463 if(!PyArg_ParseTuple(args
,(char *)"OO:Client_clientMessageHandler",&obj0
,&obj1
)) goto fail
;
9464 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9465 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XClientMessageEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9467 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
9469 (arg1
)->clientMessageHandler((XClientMessageEvent
const &)*arg2
);
9471 Py_INCREF(Py_None
); resultobj
= Py_None
;
9478 static PyObject
*_wrap_Client_configureRequestHandler(PyObject
*self
, PyObject
*args
) {
9479 PyObject
*resultobj
;
9480 ob::Client
*arg1
= (ob::Client
*) 0 ;
9481 XConfigureRequestEvent
*arg2
= 0 ;
9482 PyObject
* obj0
= 0 ;
9483 PyObject
* obj1
= 0 ;
9485 if(!PyArg_ParseTuple(args
,(char *)"OO:Client_configureRequestHandler",&obj0
,&obj1
)) goto fail
;
9486 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9487 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XConfigureRequestEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9489 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
9491 (arg1
)->configureRequestHandler((XConfigureRequestEvent
const &)*arg2
);
9493 Py_INCREF(Py_None
); resultobj
= Py_None
;
9500 static PyObject
*_wrap_Client_unmapHandler(PyObject
*self
, PyObject
*args
) {
9501 PyObject
*resultobj
;
9502 ob::Client
*arg1
= (ob::Client
*) 0 ;
9503 XUnmapEvent
*arg2
= 0 ;
9504 PyObject
* obj0
= 0 ;
9505 PyObject
* obj1
= 0 ;
9507 if(!PyArg_ParseTuple(args
,(char *)"OO:Client_unmapHandler",&obj0
,&obj1
)) goto fail
;
9508 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9509 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XUnmapEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9511 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
9513 (arg1
)->unmapHandler((XUnmapEvent
const &)*arg2
);
9515 Py_INCREF(Py_None
); resultobj
= Py_None
;
9522 static PyObject
*_wrap_Client_destroyHandler(PyObject
*self
, PyObject
*args
) {
9523 PyObject
*resultobj
;
9524 ob::Client
*arg1
= (ob::Client
*) 0 ;
9525 XDestroyWindowEvent
*arg2
= 0 ;
9526 PyObject
* obj0
= 0 ;
9527 PyObject
* obj1
= 0 ;
9529 if(!PyArg_ParseTuple(args
,(char *)"OO:Client_destroyHandler",&obj0
,&obj1
)) goto fail
;
9530 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9531 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XDestroyWindowEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9533 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
9535 (arg1
)->destroyHandler((XDestroyWindowEvent
const &)*arg2
);
9537 Py_INCREF(Py_None
); resultobj
= Py_None
;
9544 static PyObject
*_wrap_Client_reparentHandler(PyObject
*self
, PyObject
*args
) {
9545 PyObject
*resultobj
;
9546 ob::Client
*arg1
= (ob::Client
*) 0 ;
9547 XReparentEvent
*arg2
= 0 ;
9548 PyObject
* obj0
= 0 ;
9549 PyObject
* obj1
= 0 ;
9551 if(!PyArg_ParseTuple(args
,(char *)"OO:Client_reparentHandler",&obj0
,&obj1
)) goto fail
;
9552 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9553 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XReparentEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9555 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
9557 (arg1
)->reparentHandler((XReparentEvent
const &)*arg2
);
9559 Py_INCREF(Py_None
); resultobj
= Py_None
;
9566 static PyObject
*_wrap_Client_mapRequestHandler(PyObject
*self
, PyObject
*args
) {
9567 PyObject
*resultobj
;
9568 ob::Client
*arg1
= (ob::Client
*) 0 ;
9569 XMapRequestEvent
*arg2
= 0 ;
9570 PyObject
* obj0
= 0 ;
9571 PyObject
* obj1
= 0 ;
9573 if(!PyArg_ParseTuple(args
,(char *)"OO:Client_mapRequestHandler",&obj0
,&obj1
)) goto fail
;
9574 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9575 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_XMapRequestEvent
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9577 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
9579 (arg1
)->mapRequestHandler((XMapRequestEvent
const &)*arg2
);
9581 Py_INCREF(Py_None
); resultobj
= Py_None
;
9588 static PyObject
* Client_swigregister(PyObject
*self
, PyObject
*args
) {
9590 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
9591 SWIG_TypeClientData(SWIGTYPE_p_ob__Client
, obj
);
9593 return Py_BuildValue((char *)"");
9595 static PyObject
*_wrap_new_Frame(PyObject
*self
, PyObject
*args
) {
9596 PyObject
*resultobj
;
9597 ob::Client
*arg1
= (ob::Client
*) 0 ;
9598 otk::RenderStyle
*arg2
= (otk::RenderStyle
*) 0 ;
9600 PyObject
* obj0
= 0 ;
9601 PyObject
* obj1
= 0 ;
9603 if(!PyArg_ParseTuple(args
,(char *)"OO:new_Frame",&obj0
,&obj1
)) goto fail
;
9604 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9605 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__RenderStyle
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9606 result
= (ob::Frame
*)new ob::Frame(arg1
,arg2
);
9608 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_ob__Frame
, 1);
9615 static PyObject
*_wrap_delete_Frame(PyObject
*self
, PyObject
*args
) {
9616 PyObject
*resultobj
;
9617 ob::Frame
*arg1
= (ob::Frame
*) 0 ;
9618 PyObject
* obj0
= 0 ;
9620 if(!PyArg_ParseTuple(args
,(char *)"O:delete_Frame",&obj0
)) goto fail
;
9621 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Frame
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9624 Py_INCREF(Py_None
); resultobj
= Py_None
;
9631 static PyObject
*_wrap_Frame_size(PyObject
*self
, PyObject
*args
) {
9632 PyObject
*resultobj
;
9633 ob::Frame
*arg1
= (ob::Frame
*) 0 ;
9635 PyObject
* obj0
= 0 ;
9637 if(!PyArg_ParseTuple(args
,(char *)"O:Frame_size",&obj0
)) goto fail
;
9638 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Frame
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9640 otk::Strut
const &_result_ref
= ((ob::Frame
const *)arg1
)->size();
9641 result
= (otk::Strut
*) &_result_ref
;
9644 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_otk__Strut
, 0);
9651 static PyObject
*_wrap_Frame_setStyle(PyObject
*self
, PyObject
*args
) {
9652 PyObject
*resultobj
;
9653 ob::Frame
*arg1
= (ob::Frame
*) 0 ;
9654 otk::RenderStyle
*arg2
= (otk::RenderStyle
*) 0 ;
9655 PyObject
* obj0
= 0 ;
9656 PyObject
* obj1
= 0 ;
9658 if(!PyArg_ParseTuple(args
,(char *)"OO:Frame_setStyle",&obj0
,&obj1
)) goto fail
;
9659 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Frame
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9660 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_otk__RenderStyle
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9661 (arg1
)->setStyle(arg2
);
9663 Py_INCREF(Py_None
); resultobj
= Py_None
;
9670 static PyObject
*_wrap_Frame_adjust(PyObject
*self
, PyObject
*args
) {
9671 PyObject
*resultobj
;
9672 ob::Frame
*arg1
= (ob::Frame
*) 0 ;
9673 PyObject
* obj0
= 0 ;
9675 if(!PyArg_ParseTuple(args
,(char *)"O:Frame_adjust",&obj0
)) goto fail
;
9676 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Frame
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9679 Py_INCREF(Py_None
); resultobj
= Py_None
;
9686 static PyObject
*_wrap_Frame_focus(PyObject
*self
, PyObject
*args
) {
9687 PyObject
*resultobj
;
9688 ob::Frame
*arg1
= (ob::Frame
*) 0 ;
9689 PyObject
* obj0
= 0 ;
9691 if(!PyArg_ParseTuple(args
,(char *)"O:Frame_focus",&obj0
)) goto fail
;
9692 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Frame
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9695 Py_INCREF(Py_None
); resultobj
= Py_None
;
9702 static PyObject
*_wrap_Frame_unfocus(PyObject
*self
, PyObject
*args
) {
9703 PyObject
*resultobj
;
9704 ob::Frame
*arg1
= (ob::Frame
*) 0 ;
9705 PyObject
* obj0
= 0 ;
9707 if(!PyArg_ParseTuple(args
,(char *)"O:Frame_unfocus",&obj0
)) goto fail
;
9708 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Frame
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9711 Py_INCREF(Py_None
); resultobj
= Py_None
;
9718 static PyObject
*_wrap_Frame_setTitle(PyObject
*self
, PyObject
*args
) {
9719 PyObject
*resultobj
;
9720 ob::Frame
*arg1
= (ob::Frame
*) 0 ;
9721 otk::ustring
*arg2
= 0 ;
9722 otk::ustring temp2
;
9723 PyObject
* obj0
= 0 ;
9724 PyObject
* obj1
= 0 ;
9726 if(!PyArg_ParseTuple(args
,(char *)"OO:Frame_setTitle",&obj0
,&obj1
)) goto fail
;
9727 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Frame
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9729 if (PyString_Check(obj1
)) {
9730 temp2
= otk::ustring(PyString_AsString(obj1
));
9733 SWIG_exception(SWIG_TypeError
, "ustring expected");
9736 (arg1
)->setTitle((otk::ustring
const &)*arg2
);
9738 Py_INCREF(Py_None
); resultobj
= Py_None
;
9745 static PyObject
*_wrap_Frame_grabClient(PyObject
*self
, PyObject
*args
) {
9746 PyObject
*resultobj
;
9747 ob::Frame
*arg1
= (ob::Frame
*) 0 ;
9748 PyObject
* obj0
= 0 ;
9750 if(!PyArg_ParseTuple(args
,(char *)"O:Frame_grabClient",&obj0
)) goto fail
;
9751 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Frame
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9752 (arg1
)->grabClient();
9754 Py_INCREF(Py_None
); resultobj
= Py_None
;
9761 static PyObject
*_wrap_Frame_releaseClient(PyObject
*self
, PyObject
*args
) {
9762 PyObject
*resultobj
;
9763 ob::Frame
*arg1
= (ob::Frame
*) 0 ;
9764 PyObject
* obj0
= 0 ;
9766 if(!PyArg_ParseTuple(args
,(char *)"O:Frame_releaseClient",&obj0
)) goto fail
;
9767 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Frame
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9768 (arg1
)->releaseClient();
9770 Py_INCREF(Py_None
); resultobj
= Py_None
;
9777 static PyObject
*_wrap_Frame_adjustSize(PyObject
*self
, PyObject
*args
) {
9778 PyObject
*resultobj
;
9779 ob::Frame
*arg1
= (ob::Frame
*) 0 ;
9780 PyObject
* obj0
= 0 ;
9782 if(!PyArg_ParseTuple(args
,(char *)"O:Frame_adjustSize",&obj0
)) goto fail
;
9783 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Frame
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9784 (arg1
)->adjustSize();
9786 Py_INCREF(Py_None
); resultobj
= Py_None
;
9793 static PyObject
*_wrap_Frame_adjustPosition(PyObject
*self
, PyObject
*args
) {
9794 PyObject
*resultobj
;
9795 ob::Frame
*arg1
= (ob::Frame
*) 0 ;
9796 PyObject
* obj0
= 0 ;
9798 if(!PyArg_ParseTuple(args
,(char *)"O:Frame_adjustPosition",&obj0
)) goto fail
;
9799 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Frame
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9800 (arg1
)->adjustPosition();
9802 Py_INCREF(Py_None
); resultobj
= Py_None
;
9809 static PyObject
*_wrap_Frame_adjustShape(PyObject
*self
, PyObject
*args
) {
9810 PyObject
*resultobj
;
9811 ob::Frame
*arg1
= (ob::Frame
*) 0 ;
9812 PyObject
* obj0
= 0 ;
9814 if(!PyArg_ParseTuple(args
,(char *)"O:Frame_adjustShape",&obj0
)) goto fail
;
9815 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Frame
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9816 (arg1
)->adjustShape();
9818 Py_INCREF(Py_None
); resultobj
= Py_None
;
9825 static PyObject
*_wrap_Frame_adjustState(PyObject
*self
, PyObject
*args
) {
9826 PyObject
*resultobj
;
9827 ob::Frame
*arg1
= (ob::Frame
*) 0 ;
9828 PyObject
* obj0
= 0 ;
9830 if(!PyArg_ParseTuple(args
,(char *)"O:Frame_adjustState",&obj0
)) goto fail
;
9831 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Frame
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9832 (arg1
)->adjustState();
9834 Py_INCREF(Py_None
); resultobj
= Py_None
;
9841 static PyObject
*_wrap_Frame_clientGravity(PyObject
*self
, PyObject
*args
) {
9842 PyObject
*resultobj
;
9843 ob::Frame
*arg1
= (ob::Frame
*) 0 ;
9846 PyObject
* obj0
= 0 ;
9847 PyObject
* obj1
= 0 ;
9848 PyObject
* obj2
= 0 ;
9850 if(!PyArg_ParseTuple(args
,(char *)"OOO:Frame_clientGravity",&obj0
,&obj1
,&obj2
)) goto fail
;
9851 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Frame
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9852 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_int
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9854 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
9856 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_int
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9858 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
9860 (arg1
)->clientGravity(*arg2
,*arg3
);
9862 Py_INCREF(Py_None
); resultobj
= Py_None
;
9869 static PyObject
*_wrap_Frame_frameGravity(PyObject
*self
, PyObject
*args
) {
9870 PyObject
*resultobj
;
9871 ob::Frame
*arg1
= (ob::Frame
*) 0 ;
9874 PyObject
* obj0
= 0 ;
9875 PyObject
* obj1
= 0 ;
9876 PyObject
* obj2
= 0 ;
9878 if(!PyArg_ParseTuple(args
,(char *)"OOO:Frame_frameGravity",&obj0
,&obj1
,&obj2
)) goto fail
;
9879 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Frame
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9880 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_int
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9882 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
9884 if ((SWIG_ConvertPtr(obj2
,(void **) &arg3
, SWIGTYPE_p_int
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9886 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
9888 (arg1
)->frameGravity(*arg2
,*arg3
);
9890 Py_INCREF(Py_None
); resultobj
= Py_None
;
9897 static PyObject
*_wrap_Frame_plate(PyObject
*self
, PyObject
*args
) {
9898 PyObject
*resultobj
;
9899 ob::Frame
*arg1
= (ob::Frame
*) 0 ;
9901 PyObject
* obj0
= 0 ;
9903 if(!PyArg_ParseTuple(args
,(char *)"O:Frame_plate",&obj0
)) goto fail
;
9904 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Frame
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9905 result
= (Window
)((ob::Frame
const *)arg1
)->plate();
9907 resultobj
= PyInt_FromLong((long)result
);
9914 static PyObject
*_wrap_Frame_titlebar(PyObject
*self
, PyObject
*args
) {
9915 PyObject
*resultobj
;
9916 ob::Frame
*arg1
= (ob::Frame
*) 0 ;
9918 PyObject
* obj0
= 0 ;
9920 if(!PyArg_ParseTuple(args
,(char *)"O:Frame_titlebar",&obj0
)) goto fail
;
9921 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Frame
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9922 result
= (Window
)((ob::Frame
const *)arg1
)->titlebar();
9924 resultobj
= PyInt_FromLong((long)result
);
9931 static PyObject
*_wrap_Frame_label(PyObject
*self
, PyObject
*args
) {
9932 PyObject
*resultobj
;
9933 ob::Frame
*arg1
= (ob::Frame
*) 0 ;
9935 PyObject
* obj0
= 0 ;
9937 if(!PyArg_ParseTuple(args
,(char *)"O:Frame_label",&obj0
)) goto fail
;
9938 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Frame
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9939 result
= (Window
)((ob::Frame
const *)arg1
)->label();
9941 resultobj
= PyInt_FromLong((long)result
);
9948 static PyObject
*_wrap_Frame_button_close(PyObject
*self
, PyObject
*args
) {
9949 PyObject
*resultobj
;
9950 ob::Frame
*arg1
= (ob::Frame
*) 0 ;
9952 PyObject
* obj0
= 0 ;
9954 if(!PyArg_ParseTuple(args
,(char *)"O:Frame_button_close",&obj0
)) goto fail
;
9955 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Frame
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9956 result
= (Window
)((ob::Frame
const *)arg1
)->button_close();
9958 resultobj
= PyInt_FromLong((long)result
);
9965 static PyObject
*_wrap_Frame_button_iconify(PyObject
*self
, PyObject
*args
) {
9966 PyObject
*resultobj
;
9967 ob::Frame
*arg1
= (ob::Frame
*) 0 ;
9969 PyObject
* obj0
= 0 ;
9971 if(!PyArg_ParseTuple(args
,(char *)"O:Frame_button_iconify",&obj0
)) goto fail
;
9972 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Frame
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9973 result
= (Window
)((ob::Frame
const *)arg1
)->button_iconify();
9975 resultobj
= PyInt_FromLong((long)result
);
9982 static PyObject
*_wrap_Frame_button_max(PyObject
*self
, PyObject
*args
) {
9983 PyObject
*resultobj
;
9984 ob::Frame
*arg1
= (ob::Frame
*) 0 ;
9986 PyObject
* obj0
= 0 ;
9988 if(!PyArg_ParseTuple(args
,(char *)"O:Frame_button_max",&obj0
)) goto fail
;
9989 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Frame
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
9990 result
= (Window
)((ob::Frame
const *)arg1
)->button_max();
9992 resultobj
= PyInt_FromLong((long)result
);
9999 static PyObject
*_wrap_Frame_button_alldesk(PyObject
*self
, PyObject
*args
) {
10000 PyObject
*resultobj
;
10001 ob::Frame
*arg1
= (ob::Frame
*) 0 ;
10003 PyObject
* obj0
= 0 ;
10005 if(!PyArg_ParseTuple(args
,(char *)"O:Frame_button_alldesk",&obj0
)) goto fail
;
10006 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Frame
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10007 result
= (Window
)((ob::Frame
const *)arg1
)->button_alldesk();
10009 resultobj
= PyInt_FromLong((long)result
);
10016 static PyObject
*_wrap_Frame_handle(PyObject
*self
, PyObject
*args
) {
10017 PyObject
*resultobj
;
10018 ob::Frame
*arg1
= (ob::Frame
*) 0 ;
10020 PyObject
* obj0
= 0 ;
10022 if(!PyArg_ParseTuple(args
,(char *)"O:Frame_handle",&obj0
)) goto fail
;
10023 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Frame
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10024 result
= (Window
)((ob::Frame
const *)arg1
)->handle();
10026 resultobj
= PyInt_FromLong((long)result
);
10033 static PyObject
*_wrap_Frame_grip_left(PyObject
*self
, PyObject
*args
) {
10034 PyObject
*resultobj
;
10035 ob::Frame
*arg1
= (ob::Frame
*) 0 ;
10037 PyObject
* obj0
= 0 ;
10039 if(!PyArg_ParseTuple(args
,(char *)"O:Frame_grip_left",&obj0
)) goto fail
;
10040 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Frame
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10041 result
= (Window
)((ob::Frame
const *)arg1
)->grip_left();
10043 resultobj
= PyInt_FromLong((long)result
);
10050 static PyObject
*_wrap_Frame_grip_right(PyObject
*self
, PyObject
*args
) {
10051 PyObject
*resultobj
;
10052 ob::Frame
*arg1
= (ob::Frame
*) 0 ;
10054 PyObject
* obj0
= 0 ;
10056 if(!PyArg_ParseTuple(args
,(char *)"O:Frame_grip_right",&obj0
)) goto fail
;
10057 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__Frame
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10058 result
= (Window
)((ob::Frame
const *)arg1
)->grip_right();
10060 resultobj
= PyInt_FromLong((long)result
);
10067 static PyObject
* Frame_swigregister(PyObject
*self
, PyObject
*args
) {
10069 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
10070 SWIG_TypeClientData(SWIGTYPE_p_ob__Frame
, obj
);
10072 return Py_BuildValue((char *)"");
10074 static PyObject
*_wrap_MouseData_screen_set(PyObject
*self
, PyObject
*args
) {
10075 PyObject
*resultobj
;
10076 ob::MouseData
*arg1
= (ob::MouseData
*) 0 ;
10078 PyObject
* obj0
= 0 ;
10080 if(!PyArg_ParseTuple(args
,(char *)"Oi:MouseData_screen_set",&obj0
,&arg2
)) goto fail
;
10081 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__MouseData
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10082 if (arg1
) (arg1
)->screen
= arg2
;
10084 Py_INCREF(Py_None
); resultobj
= Py_None
;
10091 static PyObject
*_wrap_MouseData_screen_get(PyObject
*self
, PyObject
*args
) {
10092 PyObject
*resultobj
;
10093 ob::MouseData
*arg1
= (ob::MouseData
*) 0 ;
10095 PyObject
* obj0
= 0 ;
10097 if(!PyArg_ParseTuple(args
,(char *)"O:MouseData_screen_get",&obj0
)) goto fail
;
10098 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__MouseData
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10099 result
= (int) ((arg1
)->screen
);
10101 resultobj
= PyInt_FromLong((long)result
);
10108 static PyObject
*_wrap_MouseData_client_set(PyObject
*self
, PyObject
*args
) {
10109 PyObject
*resultobj
;
10110 ob::MouseData
*arg1
= (ob::MouseData
*) 0 ;
10111 ob::Client
*arg2
= (ob::Client
*) 0 ;
10112 PyObject
* obj0
= 0 ;
10113 PyObject
* obj1
= 0 ;
10115 if(!PyArg_ParseTuple(args
,(char *)"OO:MouseData_client_set",&obj0
,&obj1
)) goto fail
;
10116 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__MouseData
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10117 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| SWIG_POINTER_DISOWN
)) == -1) SWIG_fail
;
10118 if (arg1
) (arg1
)->client
= arg2
;
10120 Py_INCREF(Py_None
); resultobj
= Py_None
;
10127 static PyObject
*_wrap_MouseData_client_get(PyObject
*self
, PyObject
*args
) {
10128 PyObject
*resultobj
;
10129 ob::MouseData
*arg1
= (ob::MouseData
*) 0 ;
10130 ob::Client
*result
;
10131 PyObject
* obj0
= 0 ;
10133 if(!PyArg_ParseTuple(args
,(char *)"O:MouseData_client_get",&obj0
)) goto fail
;
10134 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__MouseData
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10135 result
= (ob::Client
*) ((arg1
)->client
);
10137 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_ob__Client
, 0);
10144 static PyObject
*_wrap_MouseData_time_set(PyObject
*self
, PyObject
*args
) {
10145 PyObject
*resultobj
;
10146 ob::MouseData
*arg1
= (ob::MouseData
*) 0 ;
10148 PyObject
* obj0
= 0 ;
10149 PyObject
* obj1
= 0 ;
10151 if(!PyArg_ParseTuple(args
,(char *)"OO:MouseData_time_set",&obj0
,&obj1
)) goto fail
;
10152 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__MouseData
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10153 arg2
= (Time
) PyInt_AsLong(obj1
);
10154 if (PyErr_Occurred()) SWIG_fail
;
10155 if (arg1
) (arg1
)->time
= arg2
;
10157 Py_INCREF(Py_None
); resultobj
= Py_None
;
10164 static PyObject
*_wrap_MouseData_time_get(PyObject
*self
, PyObject
*args
) {
10165 PyObject
*resultobj
;
10166 ob::MouseData
*arg1
= (ob::MouseData
*) 0 ;
10168 PyObject
* obj0
= 0 ;
10170 if(!PyArg_ParseTuple(args
,(char *)"O:MouseData_time_get",&obj0
)) goto fail
;
10171 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__MouseData
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10172 result
= (Time
) ((arg1
)->time
);
10174 resultobj
= PyInt_FromLong((long)result
);
10181 static PyObject
*_wrap_MouseData_state_set(PyObject
*self
, PyObject
*args
) {
10182 PyObject
*resultobj
;
10183 ob::MouseData
*arg1
= (ob::MouseData
*) 0 ;
10184 unsigned int arg2
;
10185 PyObject
* obj0
= 0 ;
10186 PyObject
* obj1
= 0 ;
10188 if(!PyArg_ParseTuple(args
,(char *)"OO:MouseData_state_set",&obj0
,&obj1
)) goto fail
;
10189 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__MouseData
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10190 arg2
= (unsigned int) PyInt_AsLong(obj1
);
10191 if (PyErr_Occurred()) SWIG_fail
;
10192 if (arg1
) (arg1
)->state
= arg2
;
10194 Py_INCREF(Py_None
); resultobj
= Py_None
;
10201 static PyObject
*_wrap_MouseData_state_get(PyObject
*self
, PyObject
*args
) {
10202 PyObject
*resultobj
;
10203 ob::MouseData
*arg1
= (ob::MouseData
*) 0 ;
10204 unsigned int result
;
10205 PyObject
* obj0
= 0 ;
10207 if(!PyArg_ParseTuple(args
,(char *)"O:MouseData_state_get",&obj0
)) goto fail
;
10208 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__MouseData
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10209 result
= (unsigned int) ((arg1
)->state
);
10211 resultobj
= PyInt_FromLong((long)result
);
10218 static PyObject
*_wrap_MouseData_button_set(PyObject
*self
, PyObject
*args
) {
10219 PyObject
*resultobj
;
10220 ob::MouseData
*arg1
= (ob::MouseData
*) 0 ;
10221 unsigned int arg2
;
10222 PyObject
* obj0
= 0 ;
10223 PyObject
* obj1
= 0 ;
10225 if(!PyArg_ParseTuple(args
,(char *)"OO:MouseData_button_set",&obj0
,&obj1
)) goto fail
;
10226 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__MouseData
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10227 arg2
= (unsigned int) PyInt_AsLong(obj1
);
10228 if (PyErr_Occurred()) SWIG_fail
;
10229 if (arg1
) (arg1
)->button
= arg2
;
10231 Py_INCREF(Py_None
); resultobj
= Py_None
;
10238 static PyObject
*_wrap_MouseData_button_get(PyObject
*self
, PyObject
*args
) {
10239 PyObject
*resultobj
;
10240 ob::MouseData
*arg1
= (ob::MouseData
*) 0 ;
10241 unsigned int result
;
10242 PyObject
* obj0
= 0 ;
10244 if(!PyArg_ParseTuple(args
,(char *)"O:MouseData_button_get",&obj0
)) goto fail
;
10245 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__MouseData
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10246 result
= (unsigned int) ((arg1
)->button
);
10248 resultobj
= PyInt_FromLong((long)result
);
10255 static PyObject
*_wrap_MouseData_context_set(PyObject
*self
, PyObject
*args
) {
10256 PyObject
*resultobj
;
10257 ob::MouseData
*arg1
= (ob::MouseData
*) 0 ;
10259 PyObject
* obj0
= 0 ;
10261 if(!PyArg_ParseTuple(args
,(char *)"Oi:MouseData_context_set",&obj0
,&arg2
)) goto fail
;
10262 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__MouseData
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10263 if (arg1
) (arg1
)->context
= (ob::MouseContext
)arg2
;
10265 Py_INCREF(Py_None
); resultobj
= Py_None
;
10272 static PyObject
*_wrap_MouseData_context_get(PyObject
*self
, PyObject
*args
) {
10273 PyObject
*resultobj
;
10274 ob::MouseData
*arg1
= (ob::MouseData
*) 0 ;
10276 PyObject
* obj0
= 0 ;
10278 if(!PyArg_ParseTuple(args
,(char *)"O:MouseData_context_get",&obj0
)) goto fail
;
10279 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__MouseData
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10280 result
= (int) ((arg1
)->context
);
10282 resultobj
= PyInt_FromLong((long)result
);
10289 static PyObject
*_wrap_MouseData_action_set(PyObject
*self
, PyObject
*args
) {
10290 PyObject
*resultobj
;
10291 ob::MouseData
*arg1
= (ob::MouseData
*) 0 ;
10293 PyObject
* obj0
= 0 ;
10295 if(!PyArg_ParseTuple(args
,(char *)"Oi:MouseData_action_set",&obj0
,&arg2
)) goto fail
;
10296 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__MouseData
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10297 if (arg1
) (arg1
)->action
= (ob::MouseAction
)arg2
;
10299 Py_INCREF(Py_None
); resultobj
= Py_None
;
10306 static PyObject
*_wrap_MouseData_action_get(PyObject
*self
, PyObject
*args
) {
10307 PyObject
*resultobj
;
10308 ob::MouseData
*arg1
= (ob::MouseData
*) 0 ;
10310 PyObject
* obj0
= 0 ;
10312 if(!PyArg_ParseTuple(args
,(char *)"O:MouseData_action_get",&obj0
)) goto fail
;
10313 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__MouseData
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10314 result
= (int) ((arg1
)->action
);
10316 resultobj
= PyInt_FromLong((long)result
);
10323 static PyObject
*_wrap_MouseData_xroot_set(PyObject
*self
, PyObject
*args
) {
10324 PyObject
*resultobj
;
10325 ob::MouseData
*arg1
= (ob::MouseData
*) 0 ;
10327 PyObject
* obj0
= 0 ;
10329 if(!PyArg_ParseTuple(args
,(char *)"Oi:MouseData_xroot_set",&obj0
,&arg2
)) goto fail
;
10330 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__MouseData
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10331 if (arg1
) (arg1
)->xroot
= arg2
;
10333 Py_INCREF(Py_None
); resultobj
= Py_None
;
10340 static PyObject
*_wrap_MouseData_xroot_get(PyObject
*self
, PyObject
*args
) {
10341 PyObject
*resultobj
;
10342 ob::MouseData
*arg1
= (ob::MouseData
*) 0 ;
10344 PyObject
* obj0
= 0 ;
10346 if(!PyArg_ParseTuple(args
,(char *)"O:MouseData_xroot_get",&obj0
)) goto fail
;
10347 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__MouseData
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10348 result
= (int) ((arg1
)->xroot
);
10350 resultobj
= PyInt_FromLong((long)result
);
10357 static PyObject
*_wrap_MouseData_yroot_set(PyObject
*self
, PyObject
*args
) {
10358 PyObject
*resultobj
;
10359 ob::MouseData
*arg1
= (ob::MouseData
*) 0 ;
10361 PyObject
* obj0
= 0 ;
10363 if(!PyArg_ParseTuple(args
,(char *)"Oi:MouseData_yroot_set",&obj0
,&arg2
)) goto fail
;
10364 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__MouseData
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10365 if (arg1
) (arg1
)->yroot
= arg2
;
10367 Py_INCREF(Py_None
); resultobj
= Py_None
;
10374 static PyObject
*_wrap_MouseData_yroot_get(PyObject
*self
, PyObject
*args
) {
10375 PyObject
*resultobj
;
10376 ob::MouseData
*arg1
= (ob::MouseData
*) 0 ;
10378 PyObject
* obj0
= 0 ;
10380 if(!PyArg_ParseTuple(args
,(char *)"O:MouseData_yroot_get",&obj0
)) goto fail
;
10381 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__MouseData
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10382 result
= (int) ((arg1
)->yroot
);
10384 resultobj
= PyInt_FromLong((long)result
);
10391 static PyObject
*_wrap_MouseData_pressx_set(PyObject
*self
, PyObject
*args
) {
10392 PyObject
*resultobj
;
10393 ob::MouseData
*arg1
= (ob::MouseData
*) 0 ;
10395 PyObject
* obj0
= 0 ;
10397 if(!PyArg_ParseTuple(args
,(char *)"Oi:MouseData_pressx_set",&obj0
,&arg2
)) goto fail
;
10398 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__MouseData
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10399 if (arg1
) (arg1
)->pressx
= arg2
;
10401 Py_INCREF(Py_None
); resultobj
= Py_None
;
10408 static PyObject
*_wrap_MouseData_pressx_get(PyObject
*self
, PyObject
*args
) {
10409 PyObject
*resultobj
;
10410 ob::MouseData
*arg1
= (ob::MouseData
*) 0 ;
10412 PyObject
* obj0
= 0 ;
10414 if(!PyArg_ParseTuple(args
,(char *)"O:MouseData_pressx_get",&obj0
)) goto fail
;
10415 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__MouseData
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10416 result
= (int) ((arg1
)->pressx
);
10418 resultobj
= PyInt_FromLong((long)result
);
10425 static PyObject
*_wrap_MouseData_pressy_set(PyObject
*self
, PyObject
*args
) {
10426 PyObject
*resultobj
;
10427 ob::MouseData
*arg1
= (ob::MouseData
*) 0 ;
10429 PyObject
* obj0
= 0 ;
10431 if(!PyArg_ParseTuple(args
,(char *)"Oi:MouseData_pressy_set",&obj0
,&arg2
)) goto fail
;
10432 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__MouseData
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10433 if (arg1
) (arg1
)->pressy
= arg2
;
10435 Py_INCREF(Py_None
); resultobj
= Py_None
;
10442 static PyObject
*_wrap_MouseData_pressy_get(PyObject
*self
, PyObject
*args
) {
10443 PyObject
*resultobj
;
10444 ob::MouseData
*arg1
= (ob::MouseData
*) 0 ;
10446 PyObject
* obj0
= 0 ;
10448 if(!PyArg_ParseTuple(args
,(char *)"O:MouseData_pressy_get",&obj0
)) goto fail
;
10449 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__MouseData
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10450 result
= (int) ((arg1
)->pressy
);
10452 resultobj
= PyInt_FromLong((long)result
);
10459 static PyObject
*_wrap_MouseData_press_clientx_set(PyObject
*self
, PyObject
*args
) {
10460 PyObject
*resultobj
;
10461 ob::MouseData
*arg1
= (ob::MouseData
*) 0 ;
10463 PyObject
* obj0
= 0 ;
10465 if(!PyArg_ParseTuple(args
,(char *)"Oi:MouseData_press_clientx_set",&obj0
,&arg2
)) goto fail
;
10466 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__MouseData
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10467 if (arg1
) (arg1
)->press_clientx
= arg2
;
10469 Py_INCREF(Py_None
); resultobj
= Py_None
;
10476 static PyObject
*_wrap_MouseData_press_clientx_get(PyObject
*self
, PyObject
*args
) {
10477 PyObject
*resultobj
;
10478 ob::MouseData
*arg1
= (ob::MouseData
*) 0 ;
10480 PyObject
* obj0
= 0 ;
10482 if(!PyArg_ParseTuple(args
,(char *)"O:MouseData_press_clientx_get",&obj0
)) goto fail
;
10483 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__MouseData
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10484 result
= (int) ((arg1
)->press_clientx
);
10486 resultobj
= PyInt_FromLong((long)result
);
10493 static PyObject
*_wrap_MouseData_press_clienty_set(PyObject
*self
, PyObject
*args
) {
10494 PyObject
*resultobj
;
10495 ob::MouseData
*arg1
= (ob::MouseData
*) 0 ;
10497 PyObject
* obj0
= 0 ;
10499 if(!PyArg_ParseTuple(args
,(char *)"Oi:MouseData_press_clienty_set",&obj0
,&arg2
)) goto fail
;
10500 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__MouseData
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10501 if (arg1
) (arg1
)->press_clienty
= arg2
;
10503 Py_INCREF(Py_None
); resultobj
= Py_None
;
10510 static PyObject
*_wrap_MouseData_press_clienty_get(PyObject
*self
, PyObject
*args
) {
10511 PyObject
*resultobj
;
10512 ob::MouseData
*arg1
= (ob::MouseData
*) 0 ;
10514 PyObject
* obj0
= 0 ;
10516 if(!PyArg_ParseTuple(args
,(char *)"O:MouseData_press_clienty_get",&obj0
)) goto fail
;
10517 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__MouseData
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10518 result
= (int) ((arg1
)->press_clienty
);
10520 resultobj
= PyInt_FromLong((long)result
);
10527 static PyObject
*_wrap_MouseData_press_clientwidth_set(PyObject
*self
, PyObject
*args
) {
10528 PyObject
*resultobj
;
10529 ob::MouseData
*arg1
= (ob::MouseData
*) 0 ;
10531 PyObject
* obj0
= 0 ;
10533 if(!PyArg_ParseTuple(args
,(char *)"Oi:MouseData_press_clientwidth_set",&obj0
,&arg2
)) goto fail
;
10534 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__MouseData
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10535 if (arg1
) (arg1
)->press_clientwidth
= arg2
;
10537 Py_INCREF(Py_None
); resultobj
= Py_None
;
10544 static PyObject
*_wrap_MouseData_press_clientwidth_get(PyObject
*self
, PyObject
*args
) {
10545 PyObject
*resultobj
;
10546 ob::MouseData
*arg1
= (ob::MouseData
*) 0 ;
10548 PyObject
* obj0
= 0 ;
10550 if(!PyArg_ParseTuple(args
,(char *)"O:MouseData_press_clientwidth_get",&obj0
)) goto fail
;
10551 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__MouseData
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10552 result
= (int) ((arg1
)->press_clientwidth
);
10554 resultobj
= PyInt_FromLong((long)result
);
10561 static PyObject
*_wrap_MouseData_press_clientheight_set(PyObject
*self
, PyObject
*args
) {
10562 PyObject
*resultobj
;
10563 ob::MouseData
*arg1
= (ob::MouseData
*) 0 ;
10565 PyObject
* obj0
= 0 ;
10567 if(!PyArg_ParseTuple(args
,(char *)"Oi:MouseData_press_clientheight_set",&obj0
,&arg2
)) goto fail
;
10568 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__MouseData
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10569 if (arg1
) (arg1
)->press_clientheight
= arg2
;
10571 Py_INCREF(Py_None
); resultobj
= Py_None
;
10578 static PyObject
*_wrap_MouseData_press_clientheight_get(PyObject
*self
, PyObject
*args
) {
10579 PyObject
*resultobj
;
10580 ob::MouseData
*arg1
= (ob::MouseData
*) 0 ;
10582 PyObject
* obj0
= 0 ;
10584 if(!PyArg_ParseTuple(args
,(char *)"O:MouseData_press_clientheight_get",&obj0
)) goto fail
;
10585 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__MouseData
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10586 result
= (int) ((arg1
)->press_clientheight
);
10588 resultobj
= PyInt_FromLong((long)result
);
10595 static PyObject
*_wrap_new_MouseData__SWIG_0(PyObject
*self
, PyObject
*args
) {
10596 PyObject
*resultobj
;
10598 ob::Client
*arg2
= (ob::Client
*) 0 ;
10600 unsigned int arg4
;
10601 unsigned int arg5
;
10606 otk::Point
*arg10
= 0 ;
10607 otk::Rect
*arg11
= 0 ;
10608 ob::MouseData
*result
;
10609 PyObject
* obj1
= 0 ;
10610 PyObject
* obj2
= 0 ;
10611 PyObject
* obj3
= 0 ;
10612 PyObject
* obj4
= 0 ;
10613 PyObject
* obj9
= 0 ;
10614 PyObject
* obj10
= 0 ;
10616 if(!PyArg_ParseTuple(args
,(char *)"iOOOOiiiiOO:new_MouseData",&arg1
,&obj1
,&obj2
,&obj3
,&obj4
,&arg6
,&arg7
,&arg8
,&arg9
,&obj9
,&obj10
)) goto fail
;
10617 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10618 arg3
= (Time
) PyInt_AsLong(obj2
);
10619 if (PyErr_Occurred()) SWIG_fail
;
10620 arg4
= (unsigned int) PyInt_AsLong(obj3
);
10621 if (PyErr_Occurred()) SWIG_fail
;
10622 arg5
= (unsigned int) PyInt_AsLong(obj4
);
10623 if (PyErr_Occurred()) SWIG_fail
;
10624 if ((SWIG_ConvertPtr(obj9
,(void **) &arg10
, SWIGTYPE_p_otk__Point
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10625 if (arg10
== NULL
) {
10626 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
10628 if ((SWIG_ConvertPtr(obj10
,(void **) &arg11
, SWIGTYPE_p_otk__Rect
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10629 if (arg11
== NULL
) {
10630 PyErr_SetString(PyExc_TypeError
,"null reference"); SWIG_fail
;
10632 result
= (ob::MouseData
*)new ob::MouseData(arg1
,arg2
,arg3
,arg4
,arg5
,(ob::MouseContext
)arg6
,(ob::MouseAction
)arg7
,arg8
,arg9
,(otk::Point
const &)*arg10
,(otk::Rect
const &)*arg11
);
10634 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_ob__MouseData
, 1);
10641 static PyObject
*_wrap_new_MouseData__SWIG_1(PyObject
*self
, PyObject
*args
) {
10642 PyObject
*resultobj
;
10644 ob::Client
*arg2
= (ob::Client
*) 0 ;
10646 unsigned int arg4
;
10647 unsigned int arg5
;
10650 ob::MouseData
*result
;
10651 PyObject
* obj1
= 0 ;
10652 PyObject
* obj2
= 0 ;
10653 PyObject
* obj3
= 0 ;
10654 PyObject
* obj4
= 0 ;
10656 if(!PyArg_ParseTuple(args
,(char *)"iOOOOii:new_MouseData",&arg1
,&obj1
,&obj2
,&obj3
,&obj4
,&arg6
,&arg7
)) goto fail
;
10657 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10658 arg3
= (Time
) PyInt_AsLong(obj2
);
10659 if (PyErr_Occurred()) SWIG_fail
;
10660 arg4
= (unsigned int) PyInt_AsLong(obj3
);
10661 if (PyErr_Occurred()) SWIG_fail
;
10662 arg5
= (unsigned int) PyInt_AsLong(obj4
);
10663 if (PyErr_Occurred()) SWIG_fail
;
10664 result
= (ob::MouseData
*)new ob::MouseData(arg1
,arg2
,arg3
,arg4
,arg5
,(ob::MouseContext
)arg6
,(ob::MouseAction
)arg7
);
10666 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_ob__MouseData
, 1);
10673 static PyObject
*_wrap_new_MouseData(PyObject
*self
, PyObject
*args
) {
10675 PyObject
*argv
[12];
10678 argc
= PyObject_Length(args
);
10679 for (ii
= 0; (ii
< argc
) && (ii
< 11); ii
++) {
10680 argv
[ii
] = PyTuple_GetItem(args
,ii
);
10685 _v
= (PyInt_Check(argv
[0]) || PyLong_Check(argv
[0])) ? 1 : 0;
10690 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_ob__Client
, 0) == -1) {
10699 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
10703 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
10707 _v
= (PyInt_Check(argv
[4]) || PyLong_Check(argv
[4])) ? 1 : 0;
10711 _v
= (PyInt_Check(argv
[5]) || PyLong_Check(argv
[5])) ? 1 : 0;
10715 _v
= (PyInt_Check(argv
[6]) || PyLong_Check(argv
[6])) ? 1 : 0;
10718 return _wrap_new_MouseData__SWIG_1(self
,args
);
10730 _v
= (PyInt_Check(argv
[0]) || PyLong_Check(argv
[0])) ? 1 : 0;
10735 if (SWIG_ConvertPtr(argv
[1], (void **) &ptr
, SWIGTYPE_p_ob__Client
, 0) == -1) {
10744 _v
= (PyInt_Check(argv
[2]) || PyLong_Check(argv
[2])) ? 1 : 0;
10748 _v
= (PyInt_Check(argv
[3]) || PyLong_Check(argv
[3])) ? 1 : 0;
10752 _v
= (PyInt_Check(argv
[4]) || PyLong_Check(argv
[4])) ? 1 : 0;
10756 _v
= (PyInt_Check(argv
[5]) || PyLong_Check(argv
[5])) ? 1 : 0;
10760 _v
= (PyInt_Check(argv
[6]) || PyLong_Check(argv
[6])) ? 1 : 0;
10764 _v
= (PyInt_Check(argv
[7]) || PyLong_Check(argv
[7])) ? 1 : 0;
10768 _v
= (PyInt_Check(argv
[8]) || PyLong_Check(argv
[8])) ? 1 : 0;
10773 if (SWIG_ConvertPtr(argv
[9], (void **) &ptr
, SWIGTYPE_p_otk__Point
, 0) == -1) {
10783 if (SWIG_ConvertPtr(argv
[10], (void **) &ptr
, SWIGTYPE_p_otk__Rect
, 0) == -1) {
10791 return _wrap_new_MouseData__SWIG_0(self
,args
);
10805 PyErr_SetString(PyExc_TypeError
,"No matching function for overloaded 'new_MouseData'");
10810 static PyObject
* MouseData_swigregister(PyObject
*self
, PyObject
*args
) {
10812 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
10813 SWIG_TypeClientData(SWIGTYPE_p_ob__MouseData
, obj
);
10815 return Py_BuildValue((char *)"");
10817 static PyObject
*_wrap_EventData_screen_set(PyObject
*self
, PyObject
*args
) {
10818 PyObject
*resultobj
;
10819 ob::EventData
*arg1
= (ob::EventData
*) 0 ;
10821 PyObject
* obj0
= 0 ;
10823 if(!PyArg_ParseTuple(args
,(char *)"Oi:EventData_screen_set",&obj0
,&arg2
)) goto fail
;
10824 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__EventData
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10825 if (arg1
) (arg1
)->screen
= arg2
;
10827 Py_INCREF(Py_None
); resultobj
= Py_None
;
10834 static PyObject
*_wrap_EventData_screen_get(PyObject
*self
, PyObject
*args
) {
10835 PyObject
*resultobj
;
10836 ob::EventData
*arg1
= (ob::EventData
*) 0 ;
10838 PyObject
* obj0
= 0 ;
10840 if(!PyArg_ParseTuple(args
,(char *)"O:EventData_screen_get",&obj0
)) goto fail
;
10841 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__EventData
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10842 result
= (int) ((arg1
)->screen
);
10844 resultobj
= PyInt_FromLong((long)result
);
10851 static PyObject
*_wrap_EventData_client_set(PyObject
*self
, PyObject
*args
) {
10852 PyObject
*resultobj
;
10853 ob::EventData
*arg1
= (ob::EventData
*) 0 ;
10854 ob::Client
*arg2
= (ob::Client
*) 0 ;
10855 PyObject
* obj0
= 0 ;
10856 PyObject
* obj1
= 0 ;
10858 if(!PyArg_ParseTuple(args
,(char *)"OO:EventData_client_set",&obj0
,&obj1
)) goto fail
;
10859 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__EventData
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10860 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| SWIG_POINTER_DISOWN
)) == -1) SWIG_fail
;
10861 if (arg1
) (arg1
)->client
= arg2
;
10863 Py_INCREF(Py_None
); resultobj
= Py_None
;
10870 static PyObject
*_wrap_EventData_client_get(PyObject
*self
, PyObject
*args
) {
10871 PyObject
*resultobj
;
10872 ob::EventData
*arg1
= (ob::EventData
*) 0 ;
10873 ob::Client
*result
;
10874 PyObject
* obj0
= 0 ;
10876 if(!PyArg_ParseTuple(args
,(char *)"O:EventData_client_get",&obj0
)) goto fail
;
10877 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__EventData
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10878 result
= (ob::Client
*) ((arg1
)->client
);
10880 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_ob__Client
, 0);
10887 static PyObject
*_wrap_EventData_state_set(PyObject
*self
, PyObject
*args
) {
10888 PyObject
*resultobj
;
10889 ob::EventData
*arg1
= (ob::EventData
*) 0 ;
10890 unsigned int arg2
;
10891 PyObject
* obj0
= 0 ;
10892 PyObject
* obj1
= 0 ;
10894 if(!PyArg_ParseTuple(args
,(char *)"OO:EventData_state_set",&obj0
,&obj1
)) goto fail
;
10895 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__EventData
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10896 arg2
= (unsigned int) PyInt_AsLong(obj1
);
10897 if (PyErr_Occurred()) SWIG_fail
;
10898 if (arg1
) (arg1
)->state
= arg2
;
10900 Py_INCREF(Py_None
); resultobj
= Py_None
;
10907 static PyObject
*_wrap_EventData_state_get(PyObject
*self
, PyObject
*args
) {
10908 PyObject
*resultobj
;
10909 ob::EventData
*arg1
= (ob::EventData
*) 0 ;
10910 unsigned int result
;
10911 PyObject
* obj0
= 0 ;
10913 if(!PyArg_ParseTuple(args
,(char *)"O:EventData_state_get",&obj0
)) goto fail
;
10914 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__EventData
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10915 result
= (unsigned int) ((arg1
)->state
);
10917 resultobj
= PyInt_FromLong((long)result
);
10924 static PyObject
*_wrap_EventData_action_set(PyObject
*self
, PyObject
*args
) {
10925 PyObject
*resultobj
;
10926 ob::EventData
*arg1
= (ob::EventData
*) 0 ;
10928 PyObject
* obj0
= 0 ;
10930 if(!PyArg_ParseTuple(args
,(char *)"Oi:EventData_action_set",&obj0
,&arg2
)) goto fail
;
10931 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__EventData
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10932 if (arg1
) (arg1
)->action
= (ob::EventAction
)arg2
;
10934 Py_INCREF(Py_None
); resultobj
= Py_None
;
10941 static PyObject
*_wrap_EventData_action_get(PyObject
*self
, PyObject
*args
) {
10942 PyObject
*resultobj
;
10943 ob::EventData
*arg1
= (ob::EventData
*) 0 ;
10945 PyObject
* obj0
= 0 ;
10947 if(!PyArg_ParseTuple(args
,(char *)"O:EventData_action_get",&obj0
)) goto fail
;
10948 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__EventData
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10949 result
= (int) ((arg1
)->action
);
10951 resultobj
= PyInt_FromLong((long)result
);
10958 static PyObject
*_wrap_new_EventData(PyObject
*self
, PyObject
*args
) {
10959 PyObject
*resultobj
;
10961 ob::Client
*arg2
= (ob::Client
*) 0 ;
10963 unsigned int arg4
;
10964 ob::EventData
*result
;
10965 PyObject
* obj1
= 0 ;
10966 PyObject
* obj3
= 0 ;
10968 if(!PyArg_ParseTuple(args
,(char *)"iOiO:new_EventData",&arg1
,&obj1
,&arg3
,&obj3
)) goto fail
;
10969 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10970 arg4
= (unsigned int) PyInt_AsLong(obj3
);
10971 if (PyErr_Occurred()) SWIG_fail
;
10972 result
= (ob::EventData
*)new ob::EventData(arg1
,arg2
,(ob::EventAction
)arg3
,arg4
);
10974 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_ob__EventData
, 1);
10981 static PyObject
* EventData_swigregister(PyObject
*self
, PyObject
*args
) {
10983 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
10984 SWIG_TypeClientData(SWIGTYPE_p_ob__EventData
, obj
);
10986 return Py_BuildValue((char *)"");
10988 static PyObject
*_wrap_KeyData_screen_set(PyObject
*self
, PyObject
*args
) {
10989 PyObject
*resultobj
;
10990 ob::KeyData
*arg1
= (ob::KeyData
*) 0 ;
10992 PyObject
* obj0
= 0 ;
10994 if(!PyArg_ParseTuple(args
,(char *)"Oi:KeyData_screen_set",&obj0
,&arg2
)) goto fail
;
10995 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__KeyData
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
10996 if (arg1
) (arg1
)->screen
= arg2
;
10998 Py_INCREF(Py_None
); resultobj
= Py_None
;
11005 static PyObject
*_wrap_KeyData_screen_get(PyObject
*self
, PyObject
*args
) {
11006 PyObject
*resultobj
;
11007 ob::KeyData
*arg1
= (ob::KeyData
*) 0 ;
11009 PyObject
* obj0
= 0 ;
11011 if(!PyArg_ParseTuple(args
,(char *)"O:KeyData_screen_get",&obj0
)) goto fail
;
11012 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__KeyData
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11013 result
= (int) ((arg1
)->screen
);
11015 resultobj
= PyInt_FromLong((long)result
);
11022 static PyObject
*_wrap_KeyData_client_set(PyObject
*self
, PyObject
*args
) {
11023 PyObject
*resultobj
;
11024 ob::KeyData
*arg1
= (ob::KeyData
*) 0 ;
11025 ob::Client
*arg2
= (ob::Client
*) 0 ;
11026 PyObject
* obj0
= 0 ;
11027 PyObject
* obj1
= 0 ;
11029 if(!PyArg_ParseTuple(args
,(char *)"OO:KeyData_client_set",&obj0
,&obj1
)) goto fail
;
11030 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__KeyData
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11031 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| SWIG_POINTER_DISOWN
)) == -1) SWIG_fail
;
11032 if (arg1
) (arg1
)->client
= arg2
;
11034 Py_INCREF(Py_None
); resultobj
= Py_None
;
11041 static PyObject
*_wrap_KeyData_client_get(PyObject
*self
, PyObject
*args
) {
11042 PyObject
*resultobj
;
11043 ob::KeyData
*arg1
= (ob::KeyData
*) 0 ;
11044 ob::Client
*result
;
11045 PyObject
* obj0
= 0 ;
11047 if(!PyArg_ParseTuple(args
,(char *)"O:KeyData_client_get",&obj0
)) goto fail
;
11048 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__KeyData
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11049 result
= (ob::Client
*) ((arg1
)->client
);
11051 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_ob__Client
, 0);
11058 static PyObject
*_wrap_KeyData_time_set(PyObject
*self
, PyObject
*args
) {
11059 PyObject
*resultobj
;
11060 ob::KeyData
*arg1
= (ob::KeyData
*) 0 ;
11062 PyObject
* obj0
= 0 ;
11063 PyObject
* obj1
= 0 ;
11065 if(!PyArg_ParseTuple(args
,(char *)"OO:KeyData_time_set",&obj0
,&obj1
)) goto fail
;
11066 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__KeyData
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11067 arg2
= (Time
) PyInt_AsLong(obj1
);
11068 if (PyErr_Occurred()) SWIG_fail
;
11069 if (arg1
) (arg1
)->time
= arg2
;
11071 Py_INCREF(Py_None
); resultobj
= Py_None
;
11078 static PyObject
*_wrap_KeyData_time_get(PyObject
*self
, PyObject
*args
) {
11079 PyObject
*resultobj
;
11080 ob::KeyData
*arg1
= (ob::KeyData
*) 0 ;
11082 PyObject
* obj0
= 0 ;
11084 if(!PyArg_ParseTuple(args
,(char *)"O:KeyData_time_get",&obj0
)) goto fail
;
11085 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__KeyData
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11086 result
= (Time
) ((arg1
)->time
);
11088 resultobj
= PyInt_FromLong((long)result
);
11095 static PyObject
*_wrap_KeyData_state_set(PyObject
*self
, PyObject
*args
) {
11096 PyObject
*resultobj
;
11097 ob::KeyData
*arg1
= (ob::KeyData
*) 0 ;
11098 unsigned int arg2
;
11099 PyObject
* obj0
= 0 ;
11100 PyObject
* obj1
= 0 ;
11102 if(!PyArg_ParseTuple(args
,(char *)"OO:KeyData_state_set",&obj0
,&obj1
)) goto fail
;
11103 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__KeyData
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11104 arg2
= (unsigned int) PyInt_AsLong(obj1
);
11105 if (PyErr_Occurred()) SWIG_fail
;
11106 if (arg1
) (arg1
)->state
= arg2
;
11108 Py_INCREF(Py_None
); resultobj
= Py_None
;
11115 static PyObject
*_wrap_KeyData_state_get(PyObject
*self
, PyObject
*args
) {
11116 PyObject
*resultobj
;
11117 ob::KeyData
*arg1
= (ob::KeyData
*) 0 ;
11118 unsigned int result
;
11119 PyObject
* obj0
= 0 ;
11121 if(!PyArg_ParseTuple(args
,(char *)"O:KeyData_state_get",&obj0
)) goto fail
;
11122 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__KeyData
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11123 result
= (unsigned int) ((arg1
)->state
);
11125 resultobj
= PyInt_FromLong((long)result
);
11132 static PyObject
*_wrap_KeyData_key_set(PyObject
*self
, PyObject
*args
) {
11133 PyObject
*resultobj
;
11134 ob::KeyData
*arg1
= (ob::KeyData
*) 0 ;
11136 PyObject
* obj0
= 0 ;
11138 if(!PyArg_ParseTuple(args
,(char *)"Os:KeyData_key_set",&obj0
,&arg2
)) goto fail
;
11139 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__KeyData
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11141 if (arg1
->key
) delete [] arg1
->key
;
11142 arg1
->key
= (char *) (new char[strlen(arg2
)+1]);
11143 strcpy((char *) arg1
->key
,arg2
);
11145 Py_INCREF(Py_None
); resultobj
= Py_None
;
11152 static PyObject
*_wrap_KeyData_key_get(PyObject
*self
, PyObject
*args
) {
11153 PyObject
*resultobj
;
11154 ob::KeyData
*arg1
= (ob::KeyData
*) 0 ;
11156 PyObject
* obj0
= 0 ;
11158 if(!PyArg_ParseTuple(args
,(char *)"O:KeyData_key_get",&obj0
)) goto fail
;
11159 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__KeyData
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11160 result
= (char *) ((arg1
)->key
);
11162 resultobj
= result
? PyString_FromString(result
) : Py_BuildValue((char*)"");
11169 static PyObject
*_wrap_KeyData_action_set(PyObject
*self
, PyObject
*args
) {
11170 PyObject
*resultobj
;
11171 ob::KeyData
*arg1
= (ob::KeyData
*) 0 ;
11173 PyObject
* obj0
= 0 ;
11175 if(!PyArg_ParseTuple(args
,(char *)"Oi:KeyData_action_set",&obj0
,&arg2
)) goto fail
;
11176 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__KeyData
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11177 if (arg1
) (arg1
)->action
= (ob::KeyAction
)arg2
;
11179 Py_INCREF(Py_None
); resultobj
= Py_None
;
11186 static PyObject
*_wrap_KeyData_action_get(PyObject
*self
, PyObject
*args
) {
11187 PyObject
*resultobj
;
11188 ob::KeyData
*arg1
= (ob::KeyData
*) 0 ;
11190 PyObject
* obj0
= 0 ;
11192 if(!PyArg_ParseTuple(args
,(char *)"O:KeyData_action_get",&obj0
)) goto fail
;
11193 if ((SWIG_ConvertPtr(obj0
,(void **) &arg1
, SWIGTYPE_p_ob__KeyData
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11194 result
= (int) ((arg1
)->action
);
11196 resultobj
= PyInt_FromLong((long)result
);
11203 static PyObject
*_wrap_new_KeyData(PyObject
*self
, PyObject
*args
) {
11204 PyObject
*resultobj
;
11206 ob::Client
*arg2
= (ob::Client
*) 0 ;
11208 unsigned int arg4
;
11209 unsigned int arg5
;
11211 ob::KeyData
*result
;
11212 PyObject
* obj1
= 0 ;
11213 PyObject
* obj2
= 0 ;
11214 PyObject
* obj3
= 0 ;
11215 PyObject
* obj4
= 0 ;
11217 if(!PyArg_ParseTuple(args
,(char *)"iOOOOi:new_KeyData",&arg1
,&obj1
,&obj2
,&obj3
,&obj4
,&arg6
)) goto fail
;
11218 if ((SWIG_ConvertPtr(obj1
,(void **) &arg2
, SWIGTYPE_p_ob__Client
,SWIG_POINTER_EXCEPTION
| 0 )) == -1) SWIG_fail
;
11219 arg3
= (Time
) PyInt_AsLong(obj2
);
11220 if (PyErr_Occurred()) SWIG_fail
;
11221 arg4
= (unsigned int) PyInt_AsLong(obj3
);
11222 if (PyErr_Occurred()) SWIG_fail
;
11223 arg5
= (unsigned int) PyInt_AsLong(obj4
);
11224 if (PyErr_Occurred()) SWIG_fail
;
11225 result
= (ob::KeyData
*)new ob::KeyData(arg1
,arg2
,arg3
,arg4
,arg5
,(ob::KeyAction
)arg6
);
11227 resultobj
= SWIG_NewPointerObj((void *) result
, SWIGTYPE_p_ob__KeyData
, 1);
11234 static PyObject
* KeyData_swigregister(PyObject
*self
, PyObject
*args
) {
11236 if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
;
11237 SWIG_TypeClientData(SWIGTYPE_p_ob__KeyData
, obj
);
11239 return Py_BuildValue((char *)"");
11241 static PyObject
*_wrap_mbind(PyObject
*self
, PyObject
*args
) {
11242 PyObject
*resultobj
;
11243 std::string
*arg1
= 0 ;
11246 PyObject
*arg4
= (PyObject
*) 0 ;
11248 std::string temp1
;
11249 PyObject
* obj0
= 0 ;
11250 PyObject
* obj3
= 0 ;
11252 if(!PyArg_ParseTuple(args
,(char *)"OiiO:mbind",&obj0
,&arg2
,&arg3
,&obj3
)) goto fail
;
11254 if (PyString_Check(obj0
)) {
11255 temp1
= std::string(PyString_AsString(obj0
));
11258 SWIG_exception(SWIG_TypeError
, "string expected");
11262 result
= (PyObject
*)ob::mbind((std::string
const &)*arg1
,(ob::MouseContext
)arg2
,(ob::MouseAction
)arg3
,arg4
);
11264 resultobj
= result
;
11271 static PyObject
*_wrap_kbind(PyObject
*self
, PyObject
*args
) {
11272 PyObject
*resultobj
;
11273 PyObject
*arg1
= (PyObject
*) 0 ;
11275 PyObject
*arg3
= (PyObject
*) 0 ;
11277 PyObject
* obj0
= 0 ;
11278 PyObject
* obj2
= 0 ;
11280 if(!PyArg_ParseTuple(args
,(char *)"OiO:kbind",&obj0
,&arg2
,&obj2
)) goto fail
;
11283 result
= (PyObject
*)ob::kbind(arg1
,(ob::KeyContext
)arg2
,arg3
);
11285 resultobj
= result
;
11292 static PyObject
*_wrap_kgrab(PyObject
*self
, PyObject
*args
) {
11293 PyObject
*resultobj
;
11295 PyObject
*arg2
= (PyObject
*) 0 ;
11297 PyObject
* obj1
= 0 ;
11299 if(!PyArg_ParseTuple(args
,(char *)"iO:kgrab",&arg1
,&obj1
)) goto fail
;
11301 result
= (PyObject
*)ob::kgrab(arg1
,arg2
);
11303 resultobj
= result
;
11310 static PyObject
*_wrap_kungrab(PyObject
*self
, PyObject
*args
) {
11311 PyObject
*resultobj
;
11314 if(!PyArg_ParseTuple(args
,(char *)":kungrab")) goto fail
;
11315 result
= (PyObject
*)ob::kungrab();
11317 resultobj
= result
;
11324 static PyObject
*_wrap_ebind(PyObject
*self
, PyObject
*args
) {
11325 PyObject
*resultobj
;
11327 PyObject
*arg2
= (PyObject
*) 0 ;
11329 PyObject
* obj1
= 0 ;
11331 if(!PyArg_ParseTuple(args
,(char *)"iO:ebind",&arg1
,&obj1
)) goto fail
;
11333 result
= (PyObject
*)ob::ebind((ob::EventAction
)arg1
,arg2
);
11335 resultobj
= result
;
11342 static PyObject
*_wrap_set_reset_key(PyObject
*self
, PyObject
*args
) {
11343 PyObject
*resultobj
;
11344 std::string
*arg1
= 0 ;
11345 std::string temp1
;
11346 PyObject
* obj0
= 0 ;
11348 if(!PyArg_ParseTuple(args
,(char *)"O:set_reset_key",&obj0
)) goto fail
;
11350 if (PyString_Check(obj0
)) {
11351 temp1
= std::string(PyString_AsString(obj0
));
11354 SWIG_exception(SWIG_TypeError
, "string expected");
11357 ob::set_reset_key((std::string
const &)*arg1
);
11359 Py_INCREF(Py_None
); resultobj
= Py_None
;
11366 static PyObject
*_wrap_send_client_msg(PyObject
*self
, PyObject
*args
) {
11367 PyObject
*resultobj
;
11372 long arg5
= (long) 0 ;
11373 long arg6
= (long) 0 ;
11374 long arg7
= (long) 0 ;
11375 long arg8
= (long) 0 ;
11377 PyObject
* obj0
= 0 ;
11378 PyObject
* obj1
= 0 ;
11379 PyObject
* obj2
= 0 ;
11381 if(!PyArg_ParseTuple(args
,(char *)"OOOl|llll:send_client_msg",&obj0
,&obj1
,&obj2
,&arg4
,&arg5
,&arg6
,&arg7
,&arg8
)) goto fail
;
11382 arg1
= (Window
) PyInt_AsLong(obj0
);
11383 if (PyErr_Occurred()) SWIG_fail
;
11384 arg2
= (Atom
) PyInt_AsLong(obj1
);
11385 if (PyErr_Occurred()) SWIG_fail
;
11386 arg3
= (Window
) PyInt_AsLong(obj2
);
11387 if (PyErr_Occurred()) SWIG_fail
;
11388 result
= (PyObject
*)ob::send_client_msg(arg1
,arg2
,arg3
,arg4
,arg5
,arg6
,arg7
,arg8
);
11390 resultobj
= result
;
11397 static PyMethodDef SwigMethods
[] = {
11398 { (char *)"Openbox_instance", _wrap_Openbox_instance
, METH_VARARGS
},
11399 { (char *)"Display_instance", _wrap_Display_instance
, METH_VARARGS
},
11400 { (char *)"Property_atoms", _wrap_Property_atoms
, METH_VARARGS
},
11401 { (char *)"new_Display", _wrap_new_Display
, METH_VARARGS
},
11402 { (char *)"delete_Display", _wrap_delete_Display
, METH_VARARGS
},
11403 { (char *)"Display_screenInfo", _wrap_Display_screenInfo
, METH_VARARGS
},
11404 { (char *)"Display_findScreen", _wrap_Display_findScreen
, METH_VARARGS
},
11405 { (char *)"Display_renderControl", _wrap_Display_renderControl
, METH_VARARGS
},
11406 { (char *)"Display_xkb", _wrap_Display_xkb
, METH_VARARGS
},
11407 { (char *)"Display_xkbEventBase", _wrap_Display_xkbEventBase
, METH_VARARGS
},
11408 { (char *)"Display_shape", _wrap_Display_shape
, METH_VARARGS
},
11409 { (char *)"Display_shapeEventBase", _wrap_Display_shapeEventBase
, METH_VARARGS
},
11410 { (char *)"Display_xinerama", _wrap_Display_xinerama
, METH_VARARGS
},
11411 { (char *)"Display_numLockMask", _wrap_Display_numLockMask
, METH_VARARGS
},
11412 { (char *)"Display_scrollLockMask", _wrap_Display_scrollLockMask
, METH_VARARGS
},
11413 { (char *)"Display_modifierMap", _wrap_Display_modifierMap
, METH_VARARGS
},
11414 { (char *)"Display___mul__", _wrap_Display___mul__
, METH_VARARGS
},
11415 { (char *)"Display_grab", _wrap_Display_grab
, METH_VARARGS
},
11416 { (char *)"Display_ungrab", _wrap_Display_ungrab
, METH_VARARGS
},
11417 { (char *)"Display_grabButton", _wrap_Display_grabButton
, METH_VARARGS
},
11418 { (char *)"Display_ungrabButton", _wrap_Display_ungrabButton
, METH_VARARGS
},
11419 { (char *)"Display_grabKey", _wrap_Display_grabKey
, METH_VARARGS
},
11420 { (char *)"Display_ungrabKey", _wrap_Display_ungrabKey
, METH_VARARGS
},
11421 { (char *)"Display_swigregister", Display_swigregister
, METH_VARARGS
},
11422 { (char *)"new_Point", _wrap_new_Point
, METH_VARARGS
},
11423 { (char *)"Point_setX", _wrap_Point_setX
, METH_VARARGS
},
11424 { (char *)"Point_x", _wrap_Point_x
, METH_VARARGS
},
11425 { (char *)"Point_setY", _wrap_Point_setY
, METH_VARARGS
},
11426 { (char *)"Point_y", _wrap_Point_y
, METH_VARARGS
},
11427 { (char *)"Point_setPoint", _wrap_Point_setPoint
, METH_VARARGS
},
11428 { (char *)"Point_swigregister", Point_swigregister
, METH_VARARGS
},
11429 { (char *)"Atoms_cardinal_set", _wrap_Atoms_cardinal_set
, METH_VARARGS
},
11430 { (char *)"Atoms_cardinal_get", _wrap_Atoms_cardinal_get
, METH_VARARGS
},
11431 { (char *)"Atoms_window_set", _wrap_Atoms_window_set
, METH_VARARGS
},
11432 { (char *)"Atoms_window_get", _wrap_Atoms_window_get
, METH_VARARGS
},
11433 { (char *)"Atoms_pixmap_set", _wrap_Atoms_pixmap_set
, METH_VARARGS
},
11434 { (char *)"Atoms_pixmap_get", _wrap_Atoms_pixmap_get
, METH_VARARGS
},
11435 { (char *)"Atoms_atom_set", _wrap_Atoms_atom_set
, METH_VARARGS
},
11436 { (char *)"Atoms_atom_get", _wrap_Atoms_atom_get
, METH_VARARGS
},
11437 { (char *)"Atoms_string_set", _wrap_Atoms_string_set
, METH_VARARGS
},
11438 { (char *)"Atoms_string_get", _wrap_Atoms_string_get
, METH_VARARGS
},
11439 { (char *)"Atoms_utf8_set", _wrap_Atoms_utf8_set
, METH_VARARGS
},
11440 { (char *)"Atoms_utf8_get", _wrap_Atoms_utf8_get
, METH_VARARGS
},
11441 { (char *)"Atoms_openbox_pid_set", _wrap_Atoms_openbox_pid_set
, METH_VARARGS
},
11442 { (char *)"Atoms_openbox_pid_get", _wrap_Atoms_openbox_pid_get
, METH_VARARGS
},
11443 { (char *)"Atoms_wm_colormap_windows_set", _wrap_Atoms_wm_colormap_windows_set
, METH_VARARGS
},
11444 { (char *)"Atoms_wm_colormap_windows_get", _wrap_Atoms_wm_colormap_windows_get
, METH_VARARGS
},
11445 { (char *)"Atoms_wm_protocols_set", _wrap_Atoms_wm_protocols_set
, METH_VARARGS
},
11446 { (char *)"Atoms_wm_protocols_get", _wrap_Atoms_wm_protocols_get
, METH_VARARGS
},
11447 { (char *)"Atoms_wm_state_set", _wrap_Atoms_wm_state_set
, METH_VARARGS
},
11448 { (char *)"Atoms_wm_state_get", _wrap_Atoms_wm_state_get
, METH_VARARGS
},
11449 { (char *)"Atoms_wm_delete_window_set", _wrap_Atoms_wm_delete_window_set
, METH_VARARGS
},
11450 { (char *)"Atoms_wm_delete_window_get", _wrap_Atoms_wm_delete_window_get
, METH_VARARGS
},
11451 { (char *)"Atoms_wm_take_focus_set", _wrap_Atoms_wm_take_focus_set
, METH_VARARGS
},
11452 { (char *)"Atoms_wm_take_focus_get", _wrap_Atoms_wm_take_focus_get
, METH_VARARGS
},
11453 { (char *)"Atoms_wm_change_state_set", _wrap_Atoms_wm_change_state_set
, METH_VARARGS
},
11454 { (char *)"Atoms_wm_change_state_get", _wrap_Atoms_wm_change_state_get
, METH_VARARGS
},
11455 { (char *)"Atoms_wm_name_set", _wrap_Atoms_wm_name_set
, METH_VARARGS
},
11456 { (char *)"Atoms_wm_name_get", _wrap_Atoms_wm_name_get
, METH_VARARGS
},
11457 { (char *)"Atoms_wm_icon_name_set", _wrap_Atoms_wm_icon_name_set
, METH_VARARGS
},
11458 { (char *)"Atoms_wm_icon_name_get", _wrap_Atoms_wm_icon_name_get
, METH_VARARGS
},
11459 { (char *)"Atoms_wm_class_set", _wrap_Atoms_wm_class_set
, METH_VARARGS
},
11460 { (char *)"Atoms_wm_class_get", _wrap_Atoms_wm_class_get
, METH_VARARGS
},
11461 { (char *)"Atoms_wm_window_role_set", _wrap_Atoms_wm_window_role_set
, METH_VARARGS
},
11462 { (char *)"Atoms_wm_window_role_get", _wrap_Atoms_wm_window_role_get
, METH_VARARGS
},
11463 { (char *)"Atoms_motif_wm_hints_set", _wrap_Atoms_motif_wm_hints_set
, METH_VARARGS
},
11464 { (char *)"Atoms_motif_wm_hints_get", _wrap_Atoms_motif_wm_hints_get
, METH_VARARGS
},
11465 { (char *)"Atoms_openbox_show_root_menu_set", _wrap_Atoms_openbox_show_root_menu_set
, METH_VARARGS
},
11466 { (char *)"Atoms_openbox_show_root_menu_get", _wrap_Atoms_openbox_show_root_menu_get
, METH_VARARGS
},
11467 { (char *)"Atoms_openbox_show_workspace_menu_set", _wrap_Atoms_openbox_show_workspace_menu_set
, METH_VARARGS
},
11468 { (char *)"Atoms_openbox_show_workspace_menu_get", _wrap_Atoms_openbox_show_workspace_menu_get
, METH_VARARGS
},
11469 { (char *)"Atoms_net_supported_set", _wrap_Atoms_net_supported_set
, METH_VARARGS
},
11470 { (char *)"Atoms_net_supported_get", _wrap_Atoms_net_supported_get
, METH_VARARGS
},
11471 { (char *)"Atoms_net_client_list_set", _wrap_Atoms_net_client_list_set
, METH_VARARGS
},
11472 { (char *)"Atoms_net_client_list_get", _wrap_Atoms_net_client_list_get
, METH_VARARGS
},
11473 { (char *)"Atoms_net_client_list_stacking_set", _wrap_Atoms_net_client_list_stacking_set
, METH_VARARGS
},
11474 { (char *)"Atoms_net_client_list_stacking_get", _wrap_Atoms_net_client_list_stacking_get
, METH_VARARGS
},
11475 { (char *)"Atoms_net_number_of_desktops_set", _wrap_Atoms_net_number_of_desktops_set
, METH_VARARGS
},
11476 { (char *)"Atoms_net_number_of_desktops_get", _wrap_Atoms_net_number_of_desktops_get
, METH_VARARGS
},
11477 { (char *)"Atoms_net_desktop_geometry_set", _wrap_Atoms_net_desktop_geometry_set
, METH_VARARGS
},
11478 { (char *)"Atoms_net_desktop_geometry_get", _wrap_Atoms_net_desktop_geometry_get
, METH_VARARGS
},
11479 { (char *)"Atoms_net_desktop_viewport_set", _wrap_Atoms_net_desktop_viewport_set
, METH_VARARGS
},
11480 { (char *)"Atoms_net_desktop_viewport_get", _wrap_Atoms_net_desktop_viewport_get
, METH_VARARGS
},
11481 { (char *)"Atoms_net_current_desktop_set", _wrap_Atoms_net_current_desktop_set
, METH_VARARGS
},
11482 { (char *)"Atoms_net_current_desktop_get", _wrap_Atoms_net_current_desktop_get
, METH_VARARGS
},
11483 { (char *)"Atoms_net_desktop_names_set", _wrap_Atoms_net_desktop_names_set
, METH_VARARGS
},
11484 { (char *)"Atoms_net_desktop_names_get", _wrap_Atoms_net_desktop_names_get
, METH_VARARGS
},
11485 { (char *)"Atoms_net_active_window_set", _wrap_Atoms_net_active_window_set
, METH_VARARGS
},
11486 { (char *)"Atoms_net_active_window_get", _wrap_Atoms_net_active_window_get
, METH_VARARGS
},
11487 { (char *)"Atoms_net_workarea_set", _wrap_Atoms_net_workarea_set
, METH_VARARGS
},
11488 { (char *)"Atoms_net_workarea_get", _wrap_Atoms_net_workarea_get
, METH_VARARGS
},
11489 { (char *)"Atoms_net_supporting_wm_check_set", _wrap_Atoms_net_supporting_wm_check_set
, METH_VARARGS
},
11490 { (char *)"Atoms_net_supporting_wm_check_get", _wrap_Atoms_net_supporting_wm_check_get
, METH_VARARGS
},
11491 { (char *)"Atoms_net_close_window_set", _wrap_Atoms_net_close_window_set
, METH_VARARGS
},
11492 { (char *)"Atoms_net_close_window_get", _wrap_Atoms_net_close_window_get
, METH_VARARGS
},
11493 { (char *)"Atoms_net_wm_moveresize_set", _wrap_Atoms_net_wm_moveresize_set
, METH_VARARGS
},
11494 { (char *)"Atoms_net_wm_moveresize_get", _wrap_Atoms_net_wm_moveresize_get
, METH_VARARGS
},
11495 { (char *)"Atoms_net_wm_name_set", _wrap_Atoms_net_wm_name_set
, METH_VARARGS
},
11496 { (char *)"Atoms_net_wm_name_get", _wrap_Atoms_net_wm_name_get
, METH_VARARGS
},
11497 { (char *)"Atoms_net_wm_visible_name_set", _wrap_Atoms_net_wm_visible_name_set
, METH_VARARGS
},
11498 { (char *)"Atoms_net_wm_visible_name_get", _wrap_Atoms_net_wm_visible_name_get
, METH_VARARGS
},
11499 { (char *)"Atoms_net_wm_icon_name_set", _wrap_Atoms_net_wm_icon_name_set
, METH_VARARGS
},
11500 { (char *)"Atoms_net_wm_icon_name_get", _wrap_Atoms_net_wm_icon_name_get
, METH_VARARGS
},
11501 { (char *)"Atoms_net_wm_visible_icon_name_set", _wrap_Atoms_net_wm_visible_icon_name_set
, METH_VARARGS
},
11502 { (char *)"Atoms_net_wm_visible_icon_name_get", _wrap_Atoms_net_wm_visible_icon_name_get
, METH_VARARGS
},
11503 { (char *)"Atoms_net_wm_desktop_set", _wrap_Atoms_net_wm_desktop_set
, METH_VARARGS
},
11504 { (char *)"Atoms_net_wm_desktop_get", _wrap_Atoms_net_wm_desktop_get
, METH_VARARGS
},
11505 { (char *)"Atoms_net_wm_window_type_set", _wrap_Atoms_net_wm_window_type_set
, METH_VARARGS
},
11506 { (char *)"Atoms_net_wm_window_type_get", _wrap_Atoms_net_wm_window_type_get
, METH_VARARGS
},
11507 { (char *)"Atoms_net_wm_state_set", _wrap_Atoms_net_wm_state_set
, METH_VARARGS
},
11508 { (char *)"Atoms_net_wm_state_get", _wrap_Atoms_net_wm_state_get
, METH_VARARGS
},
11509 { (char *)"Atoms_net_wm_strut_set", _wrap_Atoms_net_wm_strut_set
, METH_VARARGS
},
11510 { (char *)"Atoms_net_wm_strut_get", _wrap_Atoms_net_wm_strut_get
, METH_VARARGS
},
11511 { (char *)"Atoms_net_wm_allowed_actions_set", _wrap_Atoms_net_wm_allowed_actions_set
, METH_VARARGS
},
11512 { (char *)"Atoms_net_wm_allowed_actions_get", _wrap_Atoms_net_wm_allowed_actions_get
, METH_VARARGS
},
11513 { (char *)"Atoms_net_wm_window_type_desktop_set", _wrap_Atoms_net_wm_window_type_desktop_set
, METH_VARARGS
},
11514 { (char *)"Atoms_net_wm_window_type_desktop_get", _wrap_Atoms_net_wm_window_type_desktop_get
, METH_VARARGS
},
11515 { (char *)"Atoms_net_wm_window_type_dock_set", _wrap_Atoms_net_wm_window_type_dock_set
, METH_VARARGS
},
11516 { (char *)"Atoms_net_wm_window_type_dock_get", _wrap_Atoms_net_wm_window_type_dock_get
, METH_VARARGS
},
11517 { (char *)"Atoms_net_wm_window_type_toolbar_set", _wrap_Atoms_net_wm_window_type_toolbar_set
, METH_VARARGS
},
11518 { (char *)"Atoms_net_wm_window_type_toolbar_get", _wrap_Atoms_net_wm_window_type_toolbar_get
, METH_VARARGS
},
11519 { (char *)"Atoms_net_wm_window_type_menu_set", _wrap_Atoms_net_wm_window_type_menu_set
, METH_VARARGS
},
11520 { (char *)"Atoms_net_wm_window_type_menu_get", _wrap_Atoms_net_wm_window_type_menu_get
, METH_VARARGS
},
11521 { (char *)"Atoms_net_wm_window_type_utility_set", _wrap_Atoms_net_wm_window_type_utility_set
, METH_VARARGS
},
11522 { (char *)"Atoms_net_wm_window_type_utility_get", _wrap_Atoms_net_wm_window_type_utility_get
, METH_VARARGS
},
11523 { (char *)"Atoms_net_wm_window_type_splash_set", _wrap_Atoms_net_wm_window_type_splash_set
, METH_VARARGS
},
11524 { (char *)"Atoms_net_wm_window_type_splash_get", _wrap_Atoms_net_wm_window_type_splash_get
, METH_VARARGS
},
11525 { (char *)"Atoms_net_wm_window_type_dialog_set", _wrap_Atoms_net_wm_window_type_dialog_set
, METH_VARARGS
},
11526 { (char *)"Atoms_net_wm_window_type_dialog_get", _wrap_Atoms_net_wm_window_type_dialog_get
, METH_VARARGS
},
11527 { (char *)"Atoms_net_wm_window_type_normal_set", _wrap_Atoms_net_wm_window_type_normal_set
, METH_VARARGS
},
11528 { (char *)"Atoms_net_wm_window_type_normal_get", _wrap_Atoms_net_wm_window_type_normal_get
, METH_VARARGS
},
11529 { (char *)"Atoms_net_wm_moveresize_size_topleft_set", _wrap_Atoms_net_wm_moveresize_size_topleft_set
, METH_VARARGS
},
11530 { (char *)"Atoms_net_wm_moveresize_size_topleft_get", _wrap_Atoms_net_wm_moveresize_size_topleft_get
, METH_VARARGS
},
11531 { (char *)"Atoms_net_wm_moveresize_size_topright_set", _wrap_Atoms_net_wm_moveresize_size_topright_set
, METH_VARARGS
},
11532 { (char *)"Atoms_net_wm_moveresize_size_topright_get", _wrap_Atoms_net_wm_moveresize_size_topright_get
, METH_VARARGS
},
11533 { (char *)"Atoms_net_wm_moveresize_size_bottomleft_set", _wrap_Atoms_net_wm_moveresize_size_bottomleft_set
, METH_VARARGS
},
11534 { (char *)"Atoms_net_wm_moveresize_size_bottomleft_get", _wrap_Atoms_net_wm_moveresize_size_bottomleft_get
, METH_VARARGS
},
11535 { (char *)"Atoms_net_wm_moveresize_size_bottomright_set", _wrap_Atoms_net_wm_moveresize_size_bottomright_set
, METH_VARARGS
},
11536 { (char *)"Atoms_net_wm_moveresize_size_bottomright_get", _wrap_Atoms_net_wm_moveresize_size_bottomright_get
, METH_VARARGS
},
11537 { (char *)"Atoms_net_wm_moveresize_move_set", _wrap_Atoms_net_wm_moveresize_move_set
, METH_VARARGS
},
11538 { (char *)"Atoms_net_wm_moveresize_move_get", _wrap_Atoms_net_wm_moveresize_move_get
, METH_VARARGS
},
11539 { (char *)"Atoms_net_wm_action_move_set", _wrap_Atoms_net_wm_action_move_set
, METH_VARARGS
},
11540 { (char *)"Atoms_net_wm_action_move_get", _wrap_Atoms_net_wm_action_move_get
, METH_VARARGS
},
11541 { (char *)"Atoms_net_wm_action_resize_set", _wrap_Atoms_net_wm_action_resize_set
, METH_VARARGS
},
11542 { (char *)"Atoms_net_wm_action_resize_get", _wrap_Atoms_net_wm_action_resize_get
, METH_VARARGS
},
11543 { (char *)"Atoms_net_wm_action_minimize_set", _wrap_Atoms_net_wm_action_minimize_set
, METH_VARARGS
},
11544 { (char *)"Atoms_net_wm_action_minimize_get", _wrap_Atoms_net_wm_action_minimize_get
, METH_VARARGS
},
11545 { (char *)"Atoms_net_wm_action_shade_set", _wrap_Atoms_net_wm_action_shade_set
, METH_VARARGS
},
11546 { (char *)"Atoms_net_wm_action_shade_get", _wrap_Atoms_net_wm_action_shade_get
, METH_VARARGS
},
11547 { (char *)"Atoms_net_wm_action_stick_set", _wrap_Atoms_net_wm_action_stick_set
, METH_VARARGS
},
11548 { (char *)"Atoms_net_wm_action_stick_get", _wrap_Atoms_net_wm_action_stick_get
, METH_VARARGS
},
11549 { (char *)"Atoms_net_wm_action_maximize_horz_set", _wrap_Atoms_net_wm_action_maximize_horz_set
, METH_VARARGS
},
11550 { (char *)"Atoms_net_wm_action_maximize_horz_get", _wrap_Atoms_net_wm_action_maximize_horz_get
, METH_VARARGS
},
11551 { (char *)"Atoms_net_wm_action_maximize_vert_set", _wrap_Atoms_net_wm_action_maximize_vert_set
, METH_VARARGS
},
11552 { (char *)"Atoms_net_wm_action_maximize_vert_get", _wrap_Atoms_net_wm_action_maximize_vert_get
, METH_VARARGS
},
11553 { (char *)"Atoms_net_wm_action_fullscreen_set", _wrap_Atoms_net_wm_action_fullscreen_set
, METH_VARARGS
},
11554 { (char *)"Atoms_net_wm_action_fullscreen_get", _wrap_Atoms_net_wm_action_fullscreen_get
, METH_VARARGS
},
11555 { (char *)"Atoms_net_wm_action_change_desktop_set", _wrap_Atoms_net_wm_action_change_desktop_set
, METH_VARARGS
},
11556 { (char *)"Atoms_net_wm_action_change_desktop_get", _wrap_Atoms_net_wm_action_change_desktop_get
, METH_VARARGS
},
11557 { (char *)"Atoms_net_wm_action_close_set", _wrap_Atoms_net_wm_action_close_set
, METH_VARARGS
},
11558 { (char *)"Atoms_net_wm_action_close_get", _wrap_Atoms_net_wm_action_close_get
, METH_VARARGS
},
11559 { (char *)"Atoms_net_wm_state_modal_set", _wrap_Atoms_net_wm_state_modal_set
, METH_VARARGS
},
11560 { (char *)"Atoms_net_wm_state_modal_get", _wrap_Atoms_net_wm_state_modal_get
, METH_VARARGS
},
11561 { (char *)"Atoms_net_wm_state_sticky_set", _wrap_Atoms_net_wm_state_sticky_set
, METH_VARARGS
},
11562 { (char *)"Atoms_net_wm_state_sticky_get", _wrap_Atoms_net_wm_state_sticky_get
, METH_VARARGS
},
11563 { (char *)"Atoms_net_wm_state_maximized_vert_set", _wrap_Atoms_net_wm_state_maximized_vert_set
, METH_VARARGS
},
11564 { (char *)"Atoms_net_wm_state_maximized_vert_get", _wrap_Atoms_net_wm_state_maximized_vert_get
, METH_VARARGS
},
11565 { (char *)"Atoms_net_wm_state_maximized_horz_set", _wrap_Atoms_net_wm_state_maximized_horz_set
, METH_VARARGS
},
11566 { (char *)"Atoms_net_wm_state_maximized_horz_get", _wrap_Atoms_net_wm_state_maximized_horz_get
, METH_VARARGS
},
11567 { (char *)"Atoms_net_wm_state_shaded_set", _wrap_Atoms_net_wm_state_shaded_set
, METH_VARARGS
},
11568 { (char *)"Atoms_net_wm_state_shaded_get", _wrap_Atoms_net_wm_state_shaded_get
, METH_VARARGS
},
11569 { (char *)"Atoms_net_wm_state_skip_taskbar_set", _wrap_Atoms_net_wm_state_skip_taskbar_set
, METH_VARARGS
},
11570 { (char *)"Atoms_net_wm_state_skip_taskbar_get", _wrap_Atoms_net_wm_state_skip_taskbar_get
, METH_VARARGS
},
11571 { (char *)"Atoms_net_wm_state_skip_pager_set", _wrap_Atoms_net_wm_state_skip_pager_set
, METH_VARARGS
},
11572 { (char *)"Atoms_net_wm_state_skip_pager_get", _wrap_Atoms_net_wm_state_skip_pager_get
, METH_VARARGS
},
11573 { (char *)"Atoms_net_wm_state_hidden_set", _wrap_Atoms_net_wm_state_hidden_set
, METH_VARARGS
},
11574 { (char *)"Atoms_net_wm_state_hidden_get", _wrap_Atoms_net_wm_state_hidden_get
, METH_VARARGS
},
11575 { (char *)"Atoms_net_wm_state_fullscreen_set", _wrap_Atoms_net_wm_state_fullscreen_set
, METH_VARARGS
},
11576 { (char *)"Atoms_net_wm_state_fullscreen_get", _wrap_Atoms_net_wm_state_fullscreen_get
, METH_VARARGS
},
11577 { (char *)"Atoms_net_wm_state_above_set", _wrap_Atoms_net_wm_state_above_set
, METH_VARARGS
},
11578 { (char *)"Atoms_net_wm_state_above_get", _wrap_Atoms_net_wm_state_above_get
, METH_VARARGS
},
11579 { (char *)"Atoms_net_wm_state_below_set", _wrap_Atoms_net_wm_state_below_set
, METH_VARARGS
},
11580 { (char *)"Atoms_net_wm_state_below_get", _wrap_Atoms_net_wm_state_below_get
, METH_VARARGS
},
11581 { (char *)"Atoms_kde_net_system_tray_windows_set", _wrap_Atoms_kde_net_system_tray_windows_set
, METH_VARARGS
},
11582 { (char *)"Atoms_kde_net_system_tray_windows_get", _wrap_Atoms_kde_net_system_tray_windows_get
, METH_VARARGS
},
11583 { (char *)"Atoms_kde_net_wm_system_tray_window_for_set", _wrap_Atoms_kde_net_wm_system_tray_window_for_set
, METH_VARARGS
},
11584 { (char *)"Atoms_kde_net_wm_system_tray_window_for_get", _wrap_Atoms_kde_net_wm_system_tray_window_for_get
, METH_VARARGS
},
11585 { (char *)"Atoms_kde_net_wm_window_type_override_set", _wrap_Atoms_kde_net_wm_window_type_override_set
, METH_VARARGS
},
11586 { (char *)"Atoms_kde_net_wm_window_type_override_get", _wrap_Atoms_kde_net_wm_window_type_override_get
, METH_VARARGS
},
11587 { (char *)"Atoms_swigregister", Atoms_swigregister
, METH_VARARGS
},
11588 { (char *)"Property_initialize", _wrap_Property_initialize
, METH_VARARGS
},
11589 { (char *)"Property_set", _wrap_Property_set
, METH_VARARGS
},
11590 { (char *)"Property_get", _wrap_Property_get
, METH_VARARGS
},
11591 { (char *)"Property_erase", _wrap_Property_erase
, METH_VARARGS
},
11592 { (char *)"Property_swigregister", Property_swigregister
, METH_VARARGS
},
11593 { (char *)"new_Rect", _wrap_new_Rect
, METH_VARARGS
},
11594 { (char *)"Rect_left", _wrap_Rect_left
, METH_VARARGS
},
11595 { (char *)"Rect_top", _wrap_Rect_top
, METH_VARARGS
},
11596 { (char *)"Rect_right", _wrap_Rect_right
, METH_VARARGS
},
11597 { (char *)"Rect_bottom", _wrap_Rect_bottom
, METH_VARARGS
},
11598 { (char *)"Rect_x", _wrap_Rect_x
, METH_VARARGS
},
11599 { (char *)"Rect_y", _wrap_Rect_y
, METH_VARARGS
},
11600 { (char *)"Rect_location", _wrap_Rect_location
, METH_VARARGS
},
11601 { (char *)"Rect_setX", _wrap_Rect_setX
, METH_VARARGS
},
11602 { (char *)"Rect_setY", _wrap_Rect_setY
, METH_VARARGS
},
11603 { (char *)"Rect_setPos", _wrap_Rect_setPos
, METH_VARARGS
},
11604 { (char *)"Rect_width", _wrap_Rect_width
, METH_VARARGS
},
11605 { (char *)"Rect_height", _wrap_Rect_height
, METH_VARARGS
},
11606 { (char *)"Rect_size", _wrap_Rect_size
, METH_VARARGS
},
11607 { (char *)"Rect_setWidth", _wrap_Rect_setWidth
, METH_VARARGS
},
11608 { (char *)"Rect_setHeight", _wrap_Rect_setHeight
, METH_VARARGS
},
11609 { (char *)"Rect_setSize", _wrap_Rect_setSize
, METH_VARARGS
},
11610 { (char *)"Rect_setRect", _wrap_Rect_setRect
, METH_VARARGS
},
11611 { (char *)"Rect_setCoords", _wrap_Rect_setCoords
, METH_VARARGS
},
11612 { (char *)"Rect___eq__", _wrap_Rect___eq__
, METH_VARARGS
},
11613 { (char *)"Rect___ne__", _wrap_Rect___ne__
, METH_VARARGS
},
11614 { (char *)"Rect___or__", _wrap_Rect___or__
, METH_VARARGS
},
11615 { (char *)"Rect___and__", _wrap_Rect___and__
, METH_VARARGS
},
11616 { (char *)"Rect___ior__", _wrap_Rect___ior__
, METH_VARARGS
},
11617 { (char *)"Rect___iand__", _wrap_Rect___iand__
, METH_VARARGS
},
11618 { (char *)"Rect_valid", _wrap_Rect_valid
, METH_VARARGS
},
11619 { (char *)"Rect_intersects", _wrap_Rect_intersects
, METH_VARARGS
},
11620 { (char *)"Rect_contains", _wrap_Rect_contains
, METH_VARARGS
},
11621 { (char *)"Rect_swigregister", Rect_swigregister
, METH_VARARGS
},
11622 { (char *)"new_ScreenInfo", _wrap_new_ScreenInfo
, METH_VARARGS
},
11623 { (char *)"ScreenInfo_visual", _wrap_ScreenInfo_visual
, METH_VARARGS
},
11624 { (char *)"ScreenInfo_rootWindow", _wrap_ScreenInfo_rootWindow
, METH_VARARGS
},
11625 { (char *)"ScreenInfo_colormap", _wrap_ScreenInfo_colormap
, METH_VARARGS
},
11626 { (char *)"ScreenInfo_depth", _wrap_ScreenInfo_depth
, METH_VARARGS
},
11627 { (char *)"ScreenInfo_screen", _wrap_ScreenInfo_screen
, METH_VARARGS
},
11628 { (char *)"ScreenInfo_rect", _wrap_ScreenInfo_rect
, METH_VARARGS
},
11629 { (char *)"ScreenInfo_width", _wrap_ScreenInfo_width
, METH_VARARGS
},
11630 { (char *)"ScreenInfo_height", _wrap_ScreenInfo_height
, METH_VARARGS
},
11631 { (char *)"ScreenInfo_displayString", _wrap_ScreenInfo_displayString
, METH_VARARGS
},
11632 { (char *)"ScreenInfo_swigregister", ScreenInfo_swigregister
, METH_VARARGS
},
11633 { (char *)"Strut_top_set", _wrap_Strut_top_set
, METH_VARARGS
},
11634 { (char *)"Strut_top_get", _wrap_Strut_top_get
, METH_VARARGS
},
11635 { (char *)"Strut_bottom_set", _wrap_Strut_bottom_set
, METH_VARARGS
},
11636 { (char *)"Strut_bottom_get", _wrap_Strut_bottom_get
, METH_VARARGS
},
11637 { (char *)"Strut_left_set", _wrap_Strut_left_set
, METH_VARARGS
},
11638 { (char *)"Strut_left_get", _wrap_Strut_left_get
, METH_VARARGS
},
11639 { (char *)"Strut_right_set", _wrap_Strut_right_set
, METH_VARARGS
},
11640 { (char *)"Strut_right_get", _wrap_Strut_right_get
, METH_VARARGS
},
11641 { (char *)"new_Strut", _wrap_new_Strut
, METH_VARARGS
},
11642 { (char *)"Strut_swigregister", Strut_swigregister
, METH_VARARGS
},
11643 { (char *)"EventHandler_handle", _wrap_EventHandler_handle
, METH_VARARGS
},
11644 { (char *)"EventHandler_keyPressHandler", _wrap_EventHandler_keyPressHandler
, METH_VARARGS
},
11645 { (char *)"EventHandler_keyReleaseHandler", _wrap_EventHandler_keyReleaseHandler
, METH_VARARGS
},
11646 { (char *)"EventHandler_buttonPressHandler", _wrap_EventHandler_buttonPressHandler
, METH_VARARGS
},
11647 { (char *)"EventHandler_buttonReleaseHandler", _wrap_EventHandler_buttonReleaseHandler
, METH_VARARGS
},
11648 { (char *)"EventHandler_motionHandler", _wrap_EventHandler_motionHandler
, METH_VARARGS
},
11649 { (char *)"EventHandler_enterHandler", _wrap_EventHandler_enterHandler
, METH_VARARGS
},
11650 { (char *)"EventHandler_leaveHandler", _wrap_EventHandler_leaveHandler
, METH_VARARGS
},
11651 { (char *)"EventHandler_focusHandler", _wrap_EventHandler_focusHandler
, METH_VARARGS
},
11652 { (char *)"EventHandler_unfocusHandler", _wrap_EventHandler_unfocusHandler
, METH_VARARGS
},
11653 { (char *)"EventHandler_exposeHandler", _wrap_EventHandler_exposeHandler
, METH_VARARGS
},
11654 { (char *)"EventHandler_graphicsExposeHandler", _wrap_EventHandler_graphicsExposeHandler
, METH_VARARGS
},
11655 { (char *)"EventHandler_noExposeEventHandler", _wrap_EventHandler_noExposeEventHandler
, METH_VARARGS
},
11656 { (char *)"EventHandler_circulateRequestHandler", _wrap_EventHandler_circulateRequestHandler
, METH_VARARGS
},
11657 { (char *)"EventHandler_configureRequestHandler", _wrap_EventHandler_configureRequestHandler
, METH_VARARGS
},
11658 { (char *)"EventHandler_mapRequestHandler", _wrap_EventHandler_mapRequestHandler
, METH_VARARGS
},
11659 { (char *)"EventHandler_resizeRequestHandler", _wrap_EventHandler_resizeRequestHandler
, METH_VARARGS
},
11660 { (char *)"EventHandler_circulateHandler", _wrap_EventHandler_circulateHandler
, METH_VARARGS
},
11661 { (char *)"EventHandler_configureHandler", _wrap_EventHandler_configureHandler
, METH_VARARGS
},
11662 { (char *)"EventHandler_createHandler", _wrap_EventHandler_createHandler
, METH_VARARGS
},
11663 { (char *)"EventHandler_destroyHandler", _wrap_EventHandler_destroyHandler
, METH_VARARGS
},
11664 { (char *)"EventHandler_gravityHandler", _wrap_EventHandler_gravityHandler
, METH_VARARGS
},
11665 { (char *)"EventHandler_mapHandler", _wrap_EventHandler_mapHandler
, METH_VARARGS
},
11666 { (char *)"EventHandler_mappingHandler", _wrap_EventHandler_mappingHandler
, METH_VARARGS
},
11667 { (char *)"EventHandler_reparentHandler", _wrap_EventHandler_reparentHandler
, METH_VARARGS
},
11668 { (char *)"EventHandler_unmapHandler", _wrap_EventHandler_unmapHandler
, METH_VARARGS
},
11669 { (char *)"EventHandler_visibilityHandler", _wrap_EventHandler_visibilityHandler
, METH_VARARGS
},
11670 { (char *)"EventHandler_colorMapHandler", _wrap_EventHandler_colorMapHandler
, METH_VARARGS
},
11671 { (char *)"EventHandler_propertyHandler", _wrap_EventHandler_propertyHandler
, METH_VARARGS
},
11672 { (char *)"EventHandler_selectionClearHandler", _wrap_EventHandler_selectionClearHandler
, METH_VARARGS
},
11673 { (char *)"EventHandler_selectionHandler", _wrap_EventHandler_selectionHandler
, METH_VARARGS
},
11674 { (char *)"EventHandler_selectionRequestHandler", _wrap_EventHandler_selectionRequestHandler
, METH_VARARGS
},
11675 { (char *)"EventHandler_clientMessageHandler", _wrap_EventHandler_clientMessageHandler
, METH_VARARGS
},
11676 { (char *)"delete_EventHandler", _wrap_delete_EventHandler
, METH_VARARGS
},
11677 { (char *)"EventHandler_swigregister", EventHandler_swigregister
, METH_VARARGS
},
11678 { (char *)"new_EventDispatcher", _wrap_new_EventDispatcher
, METH_VARARGS
},
11679 { (char *)"delete_EventDispatcher", _wrap_delete_EventDispatcher
, METH_VARARGS
},
11680 { (char *)"EventDispatcher_clearAllHandlers", _wrap_EventDispatcher_clearAllHandlers
, METH_VARARGS
},
11681 { (char *)"EventDispatcher_registerHandler", _wrap_EventDispatcher_registerHandler
, METH_VARARGS
},
11682 { (char *)"EventDispatcher_clearHandler", _wrap_EventDispatcher_clearHandler
, METH_VARARGS
},
11683 { (char *)"EventDispatcher_dispatchEvents", _wrap_EventDispatcher_dispatchEvents
, METH_VARARGS
},
11684 { (char *)"EventDispatcher_setFallbackHandler", _wrap_EventDispatcher_setFallbackHandler
, METH_VARARGS
},
11685 { (char *)"EventDispatcher_getFallbackHandler", _wrap_EventDispatcher_getFallbackHandler
, METH_VARARGS
},
11686 { (char *)"EventDispatcher_setMasterHandler", _wrap_EventDispatcher_setMasterHandler
, METH_VARARGS
},
11687 { (char *)"EventDispatcher_getMasterHandler", _wrap_EventDispatcher_getMasterHandler
, METH_VARARGS
},
11688 { (char *)"EventDispatcher_findHandler", _wrap_EventDispatcher_findHandler
, METH_VARARGS
},
11689 { (char *)"EventDispatcher_lastTime", _wrap_EventDispatcher_lastTime
, METH_VARARGS
},
11690 { (char *)"EventDispatcher_swigregister", EventDispatcher_swigregister
, METH_VARARGS
},
11691 { (char *)"Cursors_session_set", _wrap_Cursors_session_set
, METH_VARARGS
},
11692 { (char *)"Cursors_session_get", _wrap_Cursors_session_get
, METH_VARARGS
},
11693 { (char *)"Cursors_move_set", _wrap_Cursors_move_set
, METH_VARARGS
},
11694 { (char *)"Cursors_move_get", _wrap_Cursors_move_get
, METH_VARARGS
},
11695 { (char *)"Cursors_ll_angle_set", _wrap_Cursors_ll_angle_set
, METH_VARARGS
},
11696 { (char *)"Cursors_ll_angle_get", _wrap_Cursors_ll_angle_get
, METH_VARARGS
},
11697 { (char *)"Cursors_lr_angle_set", _wrap_Cursors_lr_angle_set
, METH_VARARGS
},
11698 { (char *)"Cursors_lr_angle_get", _wrap_Cursors_lr_angle_get
, METH_VARARGS
},
11699 { (char *)"Cursors_ul_angle_set", _wrap_Cursors_ul_angle_set
, METH_VARARGS
},
11700 { (char *)"Cursors_ul_angle_get", _wrap_Cursors_ul_angle_get
, METH_VARARGS
},
11701 { (char *)"Cursors_ur_angle_set", _wrap_Cursors_ur_angle_set
, METH_VARARGS
},
11702 { (char *)"Cursors_ur_angle_get", _wrap_Cursors_ur_angle_get
, METH_VARARGS
},
11703 { (char *)"Cursors_swigregister", Cursors_swigregister
, METH_VARARGS
},
11704 { (char *)"Openbox_state", _wrap_Openbox_state
, METH_VARARGS
},
11705 { (char *)"Openbox_actions", _wrap_Openbox_actions
, METH_VARARGS
},
11706 { (char *)"Openbox_bindings", _wrap_Openbox_bindings
, METH_VARARGS
},
11707 { (char *)"Openbox_screen", _wrap_Openbox_screen
, METH_VARARGS
},
11708 { (char *)"Openbox_screenCount", _wrap_Openbox_screenCount
, METH_VARARGS
},
11709 { (char *)"Openbox_cursors", _wrap_Openbox_cursors
, METH_VARARGS
},
11710 { (char *)"Openbox_addClient", _wrap_Openbox_addClient
, METH_VARARGS
},
11711 { (char *)"Openbox_removeClient", _wrap_Openbox_removeClient
, METH_VARARGS
},
11712 { (char *)"Openbox_findClient", _wrap_Openbox_findClient
, METH_VARARGS
},
11713 { (char *)"Openbox_focusedClient", _wrap_Openbox_focusedClient
, METH_VARARGS
},
11714 { (char *)"Openbox_setFocusedClient", _wrap_Openbox_setFocusedClient
, METH_VARARGS
},
11715 { (char *)"Openbox_focusedScreen", _wrap_Openbox_focusedScreen
, METH_VARARGS
},
11716 { (char *)"Openbox_shutdown", _wrap_Openbox_shutdown
, METH_VARARGS
},
11717 { (char *)"Openbox_restart", _wrap_Openbox_restart
, METH_VARARGS
},
11718 { (char *)"Openbox_execute", _wrap_Openbox_execute
, METH_VARARGS
},
11719 { (char *)"Openbox_swigregister", Openbox_swigregister
, METH_VARARGS
},
11720 { (char *)"Screen_client", _wrap_Screen_client
, METH_VARARGS
},
11721 { (char *)"Screen_clientCount", _wrap_Screen_clientCount
, METH_VARARGS
},
11722 { (char *)"Screen_number", _wrap_Screen_number
, METH_VARARGS
},
11723 { (char *)"Screen_managed", _wrap_Screen_managed
, METH_VARARGS
},
11724 { (char *)"Screen_area", _wrap_Screen_area
, METH_VARARGS
},
11725 { (char *)"Screen_style", _wrap_Screen_style
, METH_VARARGS
},
11726 { (char *)"Screen_focuswindow", _wrap_Screen_focuswindow
, METH_VARARGS
},
11727 { (char *)"Screen_desktop", _wrap_Screen_desktop
, METH_VARARGS
},
11728 { (char *)"Screen_numDesktops", _wrap_Screen_numDesktops
, METH_VARARGS
},
11729 { (char *)"Screen_updateStrut", _wrap_Screen_updateStrut
, METH_VARARGS
},
11730 { (char *)"Screen_manageExisting", _wrap_Screen_manageExisting
, METH_VARARGS
},
11731 { (char *)"Screen_manageWindow", _wrap_Screen_manageWindow
, METH_VARARGS
},
11732 { (char *)"Screen_unmanageWindow", _wrap_Screen_unmanageWindow
, METH_VARARGS
},
11733 { (char *)"Screen_raiseWindow", _wrap_Screen_raiseWindow
, METH_VARARGS
},
11734 { (char *)"Screen_lowerWindow", _wrap_Screen_lowerWindow
, METH_VARARGS
},
11735 { (char *)"Screen_setDesktopName", _wrap_Screen_setDesktopName
, METH_VARARGS
},
11736 { (char *)"Screen_propertyHandler", _wrap_Screen_propertyHandler
, METH_VARARGS
},
11737 { (char *)"Screen_clientMessageHandler", _wrap_Screen_clientMessageHandler
, METH_VARARGS
},
11738 { (char *)"Screen_mapRequestHandler", _wrap_Screen_mapRequestHandler
, METH_VARARGS
},
11739 { (char *)"Screen_swigregister", Screen_swigregister
, METH_VARARGS
},
11740 { (char *)"MwmHints_flags_set", _wrap_MwmHints_flags_set
, METH_VARARGS
},
11741 { (char *)"MwmHints_flags_get", _wrap_MwmHints_flags_get
, METH_VARARGS
},
11742 { (char *)"MwmHints_functions_set", _wrap_MwmHints_functions_set
, METH_VARARGS
},
11743 { (char *)"MwmHints_functions_get", _wrap_MwmHints_functions_get
, METH_VARARGS
},
11744 { (char *)"MwmHints_decorations_set", _wrap_MwmHints_decorations_set
, METH_VARARGS
},
11745 { (char *)"MwmHints_decorations_get", _wrap_MwmHints_decorations_get
, METH_VARARGS
},
11746 { (char *)"MwmHints_swigregister", MwmHints_swigregister
, METH_VARARGS
},
11747 { (char *)"Client_frame_set", _wrap_Client_frame_set
, METH_VARARGS
},
11748 { (char *)"Client_frame_get", _wrap_Client_frame_get
, METH_VARARGS
},
11749 { (char *)"Client_ignore_unmaps_set", _wrap_Client_ignore_unmaps_set
, METH_VARARGS
},
11750 { (char *)"Client_ignore_unmaps_get", _wrap_Client_ignore_unmaps_get
, METH_VARARGS
},
11751 { (char *)"Client_screen", _wrap_Client_screen
, METH_VARARGS
},
11752 { (char *)"Client_window", _wrap_Client_window
, METH_VARARGS
},
11753 { (char *)"Client_type", _wrap_Client_type
, METH_VARARGS
},
11754 { (char *)"Client_normal", _wrap_Client_normal
, METH_VARARGS
},
11755 { (char *)"Client_desktop", _wrap_Client_desktop
, METH_VARARGS
},
11756 { (char *)"Client_title", _wrap_Client_title
, METH_VARARGS
},
11757 { (char *)"Client_iconTitle", _wrap_Client_iconTitle
, METH_VARARGS
},
11758 { (char *)"Client_appName", _wrap_Client_appName
, METH_VARARGS
},
11759 { (char *)"Client_appClass", _wrap_Client_appClass
, METH_VARARGS
},
11760 { (char *)"Client_role", _wrap_Client_role
, METH_VARARGS
},
11761 { (char *)"Client_canFocus", _wrap_Client_canFocus
, METH_VARARGS
},
11762 { (char *)"Client_urgent", _wrap_Client_urgent
, METH_VARARGS
},
11763 { (char *)"Client_focusNotify", _wrap_Client_focusNotify
, METH_VARARGS
},
11764 { (char *)"Client_shaped", _wrap_Client_shaped
, METH_VARARGS
},
11765 { (char *)"Client_gravity", _wrap_Client_gravity
, METH_VARARGS
},
11766 { (char *)"Client_positionRequested", _wrap_Client_positionRequested
, METH_VARARGS
},
11767 { (char *)"Client_decorations", _wrap_Client_decorations
, METH_VARARGS
},
11768 { (char *)"Client_funtions", _wrap_Client_funtions
, METH_VARARGS
},
11769 { (char *)"Client_transientFor", _wrap_Client_transientFor
, METH_VARARGS
},
11770 { (char *)"Client_modal", _wrap_Client_modal
, METH_VARARGS
},
11771 { (char *)"Client_shaded", _wrap_Client_shaded
, METH_VARARGS
},
11772 { (char *)"Client_fullscreen", _wrap_Client_fullscreen
, METH_VARARGS
},
11773 { (char *)"Client_iconic", _wrap_Client_iconic
, METH_VARARGS
},
11774 { (char *)"Client_maxVert", _wrap_Client_maxVert
, METH_VARARGS
},
11775 { (char *)"Client_maxHorz", _wrap_Client_maxHorz
, METH_VARARGS
},
11776 { (char *)"Client_layer", _wrap_Client_layer
, METH_VARARGS
},
11777 { (char *)"Client_applyStartupState", _wrap_Client_applyStartupState
, METH_VARARGS
},
11778 { (char *)"Client_toggleClientBorder", _wrap_Client_toggleClientBorder
, METH_VARARGS
},
11779 { (char *)"Client_area", _wrap_Client_area
, METH_VARARGS
},
11780 { (char *)"Client_strut", _wrap_Client_strut
, METH_VARARGS
},
11781 { (char *)"Client_move", _wrap_Client_move
, METH_VARARGS
},
11782 { (char *)"Client_resize", _wrap_Client_resize
, METH_VARARGS
},
11783 { (char *)"Client_focus", _wrap_Client_focus
, METH_VARARGS
},
11784 { (char *)"Client_unfocus", _wrap_Client_unfocus
, METH_VARARGS
},
11785 { (char *)"Client_focusHandler", _wrap_Client_focusHandler
, METH_VARARGS
},
11786 { (char *)"Client_unfocusHandler", _wrap_Client_unfocusHandler
, METH_VARARGS
},
11787 { (char *)"Client_propertyHandler", _wrap_Client_propertyHandler
, METH_VARARGS
},
11788 { (char *)"Client_clientMessageHandler", _wrap_Client_clientMessageHandler
, METH_VARARGS
},
11789 { (char *)"Client_configureRequestHandler", _wrap_Client_configureRequestHandler
, METH_VARARGS
},
11790 { (char *)"Client_unmapHandler", _wrap_Client_unmapHandler
, METH_VARARGS
},
11791 { (char *)"Client_destroyHandler", _wrap_Client_destroyHandler
, METH_VARARGS
},
11792 { (char *)"Client_reparentHandler", _wrap_Client_reparentHandler
, METH_VARARGS
},
11793 { (char *)"Client_mapRequestHandler", _wrap_Client_mapRequestHandler
, METH_VARARGS
},
11794 { (char *)"Client_swigregister", Client_swigregister
, METH_VARARGS
},
11795 { (char *)"new_Frame", _wrap_new_Frame
, METH_VARARGS
},
11796 { (char *)"delete_Frame", _wrap_delete_Frame
, METH_VARARGS
},
11797 { (char *)"Frame_size", _wrap_Frame_size
, METH_VARARGS
},
11798 { (char *)"Frame_setStyle", _wrap_Frame_setStyle
, METH_VARARGS
},
11799 { (char *)"Frame_adjust", _wrap_Frame_adjust
, METH_VARARGS
},
11800 { (char *)"Frame_focus", _wrap_Frame_focus
, METH_VARARGS
},
11801 { (char *)"Frame_unfocus", _wrap_Frame_unfocus
, METH_VARARGS
},
11802 { (char *)"Frame_setTitle", _wrap_Frame_setTitle
, METH_VARARGS
},
11803 { (char *)"Frame_grabClient", _wrap_Frame_grabClient
, METH_VARARGS
},
11804 { (char *)"Frame_releaseClient", _wrap_Frame_releaseClient
, METH_VARARGS
},
11805 { (char *)"Frame_adjustSize", _wrap_Frame_adjustSize
, METH_VARARGS
},
11806 { (char *)"Frame_adjustPosition", _wrap_Frame_adjustPosition
, METH_VARARGS
},
11807 { (char *)"Frame_adjustShape", _wrap_Frame_adjustShape
, METH_VARARGS
},
11808 { (char *)"Frame_adjustState", _wrap_Frame_adjustState
, METH_VARARGS
},
11809 { (char *)"Frame_clientGravity", _wrap_Frame_clientGravity
, METH_VARARGS
},
11810 { (char *)"Frame_frameGravity", _wrap_Frame_frameGravity
, METH_VARARGS
},
11811 { (char *)"Frame_plate", _wrap_Frame_plate
, METH_VARARGS
},
11812 { (char *)"Frame_titlebar", _wrap_Frame_titlebar
, METH_VARARGS
},
11813 { (char *)"Frame_label", _wrap_Frame_label
, METH_VARARGS
},
11814 { (char *)"Frame_button_close", _wrap_Frame_button_close
, METH_VARARGS
},
11815 { (char *)"Frame_button_iconify", _wrap_Frame_button_iconify
, METH_VARARGS
},
11816 { (char *)"Frame_button_max", _wrap_Frame_button_max
, METH_VARARGS
},
11817 { (char *)"Frame_button_alldesk", _wrap_Frame_button_alldesk
, METH_VARARGS
},
11818 { (char *)"Frame_handle", _wrap_Frame_handle
, METH_VARARGS
},
11819 { (char *)"Frame_grip_left", _wrap_Frame_grip_left
, METH_VARARGS
},
11820 { (char *)"Frame_grip_right", _wrap_Frame_grip_right
, METH_VARARGS
},
11821 { (char *)"Frame_swigregister", Frame_swigregister
, METH_VARARGS
},
11822 { (char *)"MouseData_screen_set", _wrap_MouseData_screen_set
, METH_VARARGS
},
11823 { (char *)"MouseData_screen_get", _wrap_MouseData_screen_get
, METH_VARARGS
},
11824 { (char *)"MouseData_client_set", _wrap_MouseData_client_set
, METH_VARARGS
},
11825 { (char *)"MouseData_client_get", _wrap_MouseData_client_get
, METH_VARARGS
},
11826 { (char *)"MouseData_time_set", _wrap_MouseData_time_set
, METH_VARARGS
},
11827 { (char *)"MouseData_time_get", _wrap_MouseData_time_get
, METH_VARARGS
},
11828 { (char *)"MouseData_state_set", _wrap_MouseData_state_set
, METH_VARARGS
},
11829 { (char *)"MouseData_state_get", _wrap_MouseData_state_get
, METH_VARARGS
},
11830 { (char *)"MouseData_button_set", _wrap_MouseData_button_set
, METH_VARARGS
},
11831 { (char *)"MouseData_button_get", _wrap_MouseData_button_get
, METH_VARARGS
},
11832 { (char *)"MouseData_context_set", _wrap_MouseData_context_set
, METH_VARARGS
},
11833 { (char *)"MouseData_context_get", _wrap_MouseData_context_get
, METH_VARARGS
},
11834 { (char *)"MouseData_action_set", _wrap_MouseData_action_set
, METH_VARARGS
},
11835 { (char *)"MouseData_action_get", _wrap_MouseData_action_get
, METH_VARARGS
},
11836 { (char *)"MouseData_xroot_set", _wrap_MouseData_xroot_set
, METH_VARARGS
},
11837 { (char *)"MouseData_xroot_get", _wrap_MouseData_xroot_get
, METH_VARARGS
},
11838 { (char *)"MouseData_yroot_set", _wrap_MouseData_yroot_set
, METH_VARARGS
},
11839 { (char *)"MouseData_yroot_get", _wrap_MouseData_yroot_get
, METH_VARARGS
},
11840 { (char *)"MouseData_pressx_set", _wrap_MouseData_pressx_set
, METH_VARARGS
},
11841 { (char *)"MouseData_pressx_get", _wrap_MouseData_pressx_get
, METH_VARARGS
},
11842 { (char *)"MouseData_pressy_set", _wrap_MouseData_pressy_set
, METH_VARARGS
},
11843 { (char *)"MouseData_pressy_get", _wrap_MouseData_pressy_get
, METH_VARARGS
},
11844 { (char *)"MouseData_press_clientx_set", _wrap_MouseData_press_clientx_set
, METH_VARARGS
},
11845 { (char *)"MouseData_press_clientx_get", _wrap_MouseData_press_clientx_get
, METH_VARARGS
},
11846 { (char *)"MouseData_press_clienty_set", _wrap_MouseData_press_clienty_set
, METH_VARARGS
},
11847 { (char *)"MouseData_press_clienty_get", _wrap_MouseData_press_clienty_get
, METH_VARARGS
},
11848 { (char *)"MouseData_press_clientwidth_set", _wrap_MouseData_press_clientwidth_set
, METH_VARARGS
},
11849 { (char *)"MouseData_press_clientwidth_get", _wrap_MouseData_press_clientwidth_get
, METH_VARARGS
},
11850 { (char *)"MouseData_press_clientheight_set", _wrap_MouseData_press_clientheight_set
, METH_VARARGS
},
11851 { (char *)"MouseData_press_clientheight_get", _wrap_MouseData_press_clientheight_get
, METH_VARARGS
},
11852 { (char *)"new_MouseData", _wrap_new_MouseData
, METH_VARARGS
},
11853 { (char *)"MouseData_swigregister", MouseData_swigregister
, METH_VARARGS
},
11854 { (char *)"EventData_screen_set", _wrap_EventData_screen_set
, METH_VARARGS
},
11855 { (char *)"EventData_screen_get", _wrap_EventData_screen_get
, METH_VARARGS
},
11856 { (char *)"EventData_client_set", _wrap_EventData_client_set
, METH_VARARGS
},
11857 { (char *)"EventData_client_get", _wrap_EventData_client_get
, METH_VARARGS
},
11858 { (char *)"EventData_state_set", _wrap_EventData_state_set
, METH_VARARGS
},
11859 { (char *)"EventData_state_get", _wrap_EventData_state_get
, METH_VARARGS
},
11860 { (char *)"EventData_action_set", _wrap_EventData_action_set
, METH_VARARGS
},
11861 { (char *)"EventData_action_get", _wrap_EventData_action_get
, METH_VARARGS
},
11862 { (char *)"new_EventData", _wrap_new_EventData
, METH_VARARGS
},
11863 { (char *)"EventData_swigregister", EventData_swigregister
, METH_VARARGS
},
11864 { (char *)"KeyData_screen_set", _wrap_KeyData_screen_set
, METH_VARARGS
},
11865 { (char *)"KeyData_screen_get", _wrap_KeyData_screen_get
, METH_VARARGS
},
11866 { (char *)"KeyData_client_set", _wrap_KeyData_client_set
, METH_VARARGS
},
11867 { (char *)"KeyData_client_get", _wrap_KeyData_client_get
, METH_VARARGS
},
11868 { (char *)"KeyData_time_set", _wrap_KeyData_time_set
, METH_VARARGS
},
11869 { (char *)"KeyData_time_get", _wrap_KeyData_time_get
, METH_VARARGS
},
11870 { (char *)"KeyData_state_set", _wrap_KeyData_state_set
, METH_VARARGS
},
11871 { (char *)"KeyData_state_get", _wrap_KeyData_state_get
, METH_VARARGS
},
11872 { (char *)"KeyData_key_set", _wrap_KeyData_key_set
, METH_VARARGS
},
11873 { (char *)"KeyData_key_get", _wrap_KeyData_key_get
, METH_VARARGS
},
11874 { (char *)"KeyData_action_set", _wrap_KeyData_action_set
, METH_VARARGS
},
11875 { (char *)"KeyData_action_get", _wrap_KeyData_action_get
, METH_VARARGS
},
11876 { (char *)"new_KeyData", _wrap_new_KeyData
, METH_VARARGS
},
11877 { (char *)"KeyData_swigregister", KeyData_swigregister
, METH_VARARGS
},
11878 { (char *)"mbind", _wrap_mbind
, METH_VARARGS
},
11879 { (char *)"kbind", _wrap_kbind
, METH_VARARGS
},
11880 { (char *)"kgrab", _wrap_kgrab
, METH_VARARGS
},
11881 { (char *)"kungrab", _wrap_kungrab
, METH_VARARGS
},
11882 { (char *)"ebind", _wrap_ebind
, METH_VARARGS
},
11883 { (char *)"set_reset_key", _wrap_set_reset_key
, METH_VARARGS
},
11884 { (char *)"send_client_msg", _wrap_send_client_msg
, METH_VARARGS
},
11889 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */
11891 static void *_p_ob__FrameTo_p_otk__Widget(void *x
) {
11892 return (void *)((otk::Widget
*) ((ob::Frame
*) x
));
11894 static void *_p_ob__ActionsTo_p_otk__EventHandler(void *x
) {
11895 return (void *)((otk::EventHandler
*) ((ob::Actions
*) x
));
11897 static void *_p_ob__FrameTo_p_otk__EventHandler(void *x
) {
11898 return (void *)((otk::EventHandler
*) (otk::Widget
*) ((ob::Frame
*) x
));
11900 static void *_p_otk__WidgetTo_p_otk__EventHandler(void *x
) {
11901 return (void *)((otk::EventHandler
*) ((otk::Widget
*) x
));
11903 static void *_p_ob__OpenboxTo_p_otk__EventHandler(void *x
) {
11904 return (void *)((otk::EventHandler
*) ((ob::Openbox
*) x
));
11906 static void *_p_ob__ScreenTo_p_otk__EventHandler(void *x
) {
11907 return (void *)((otk::EventHandler
*) ((ob::Screen
*) x
));
11909 static void *_p_ob__ClientTo_p_otk__EventHandler(void *x
) {
11910 return (void *)((otk::EventHandler
*) ((ob::Client
*) x
));
11912 static void *_p_ob__OpenboxTo_p_otk__EventDispatcher(void *x
) {
11913 return (void *)((otk::EventDispatcher
*) ((ob::Openbox
*) x
));
11915 static void *_p_ob__FrameTo_p_ob__WidgetBase(void *x
) {
11916 return (void *)((ob::WidgetBase
*) ((ob::Frame
*) x
));
11918 static void *_p_ob__ScreenTo_p_ob__WidgetBase(void *x
) {
11919 return (void *)((ob::WidgetBase
*) ((ob::Screen
*) x
));
11921 static void *_p_ob__ClientTo_p_ob__WidgetBase(void *x
) {
11922 return (void *)((ob::WidgetBase
*) ((ob::Client
*) x
));
11924 static swig_type_info _swigt__p_otk__Point
[] = {{"_p_otk__Point", 0, "otk::Point *", 0},{"_p_otk__Point"},{0}};
11925 static swig_type_info _swigt__p_ob__Client
[] = {{"_p_ob__Client", 0, "ob::Client *", 0},{"_p_ob__Client"},{0}};
11926 static swig_type_info _swigt__p_XMapEvent
[] = {{"_p_XMapEvent", 0, "XMapEvent *", 0},{"_p_XMapEvent"},{0}};
11927 static swig_type_info _swigt__p_XUnmapEvent
[] = {{"_p_XUnmapEvent", 0, "XUnmapEvent *", 0},{"_p_XUnmapEvent"},{0}};
11928 static swig_type_info _swigt__p_XColormapEvent
[] = {{"_p_XColormapEvent", 0, "XColormapEvent *", 0},{"_p_XColormapEvent"},{0}};
11929 static swig_type_info _swigt__p_XNoExposeEvent
[] = {{"_p_XNoExposeEvent", 0, "XNoExposeEvent *", 0},{"_p_XNoExposeEvent"},{0}};
11930 static swig_type_info _swigt__p_XGraphicsExposeEvent
[] = {{"_p_XGraphicsExposeEvent", 0, "XGraphicsExposeEvent *", 0},{"_p_XGraphicsExposeEvent"},{0}};
11931 static swig_type_info _swigt__p_XExposeEvent
[] = {{"_p_XExposeEvent", 0, "XExposeEvent *", 0},{"_p_XExposeEvent"},{0}};
11932 static swig_type_info _swigt__p_XFocusChangeEvent
[] = {{"_p_XFocusChangeEvent", 0, "XFocusChangeEvent *", 0},{"_p_XFocusChangeEvent"},{0}};
11933 static swig_type_info _swigt__p_XClientMessageEvent
[] = {{"_p_XClientMessageEvent", 0, "XClientMessageEvent *", 0},{"_p_XClientMessageEvent"},{0}};
11934 static swig_type_info _swigt__p_ob__MouseData
[] = {{"_p_ob__MouseData", 0, "ob::MouseData *", 0},{"_p_ob__MouseData"},{0}};
11935 static swig_type_info _swigt__p_XSelectionClearEvent
[] = {{"_p_XSelectionClearEvent", 0, "XSelectionClearEvent *", 0},{"_p_XSelectionClearEvent"},{0}};
11936 static swig_type_info _swigt__p_otk__Rect
[] = {{"_p_otk__Rect", 0, "otk::Rect *", 0},{"_p_otk__Rect"},{0}};
11937 static swig_type_info _swigt__p_Visual
[] = {{"_p_Visual", 0, "Visual *", 0},{"_p_Visual"},{0}};
11938 static swig_type_info _swigt__p_XResizeRequestEvent
[] = {{"_p_XResizeRequestEvent", 0, "XResizeRequestEvent *", 0},{"_p_XResizeRequestEvent"},{0}};
11939 static swig_type_info _swigt__p_XMapRequestEvent
[] = {{"_p_XMapRequestEvent", 0, "XMapRequestEvent *", 0},{"_p_XMapRequestEvent"},{0}};
11940 static swig_type_info _swigt__p_XConfigureRequestEvent
[] = {{"_p_XConfigureRequestEvent", 0, "XConfigureRequestEvent *", 0},{"_p_XConfigureRequestEvent"},{0}};
11941 static swig_type_info _swigt__p_XCirculateRequestEvent
[] = {{"_p_XCirculateRequestEvent", 0, "XCirculateRequestEvent *", 0},{"_p_XCirculateRequestEvent"},{0}};
11942 static swig_type_info _swigt__p_XGravityEvent
[] = {{"_p_XGravityEvent", 0, "XGravityEvent *", 0},{"_p_XGravityEvent"},{0}};
11943 static swig_type_info _swigt__p_XVisibilityEvent
[] = {{"_p_XVisibilityEvent", 0, "XVisibilityEvent *", 0},{"_p_XVisibilityEvent"},{0}};
11944 static swig_type_info _swigt__p_XPropertyEvent
[] = {{"_p_XPropertyEvent", 0, "XPropertyEvent *", 0},{"_p_XPropertyEvent"},{0}};
11945 static swig_type_info _swigt__p_XSelectionRequestEvent
[] = {{"_p_XSelectionRequestEvent", 0, "XSelectionRequestEvent *", 0},{"_p_XSelectionRequestEvent"},{0}};
11946 static swig_type_info _swigt__p_ob__Cursors
[] = {{"_p_ob__Cursors", 0, "ob::Cursors *", 0},{"_p_ob__Cursors"},{0}};
11947 static swig_type_info _swigt__p_otk__RenderControl
[] = {{"_p_otk__RenderControl", 0, "otk::RenderControl *", 0},{"_p_otk__RenderControl"},{0}};
11948 static swig_type_info _swigt__p_ob__MwmHints
[] = {{"_p_ob__MwmHints", 0, "ob::MwmHints *", 0},{"_p_ob__MwmHints"},{0}};
11949 static swig_type_info _swigt__p_ob__Screen
[] = {{"_p_ob__Screen", 0, "ob::Screen *", 0},{"_p_ob__Screen"},{0}};
11950 static swig_type_info _swigt__p_ob__Frame
[] = {{"_p_ob__Frame", 0, "ob::Frame *", 0},{"_p_ob__Frame"},{0}};
11951 static swig_type_info _swigt__p_ob__KeyData
[] = {{"_p_ob__KeyData", 0, "ob::KeyData *", 0},{"_p_ob__KeyData"},{0}};
11952 static swig_type_info _swigt__p_XCirculateEvent
[] = {{"_p_XCirculateEvent", 0, "XCirculateEvent *", 0},{"_p_XCirculateEvent"},{0}};
11953 static swig_type_info _swigt__p_XConfigureEvent
[] = {{"_p_XConfigureEvent", 0, "XConfigureEvent *", 0},{"_p_XConfigureEvent"},{0}};
11954 static swig_type_info _swigt__p_XRectangle
[] = {{"_p_XRectangle", 0, "XRectangle *", 0},{"_p_XRectangle"},{0}};
11955 static swig_type_info _swigt__p_otk__ustring
[] = {{"_p_otk__ustring", 0, "otk::ustring *", 0},{"_p_otk__ustring"},{0}};
11956 static swig_type_info _swigt__p_XCrossingEvent
[] = {{"_p_XCrossingEvent", 0, "XCrossingEvent *", 0},{"_p_XCrossingEvent"},{0}};
11957 static swig_type_info _swigt__p_otk__Display
[] = {{"_p_otk__Display", 0, "otk::Display *", 0},{"_p_otk__Display"},{0}};
11958 static swig_type_info _swigt__p_Display
[] = {{"_p_Display", 0, "Display *", 0},{"_p_Display"},{0}};
11959 static swig_type_info _swigt__p_XMappingEvent
[] = {{"_p_XMappingEvent", 0, "XMappingEvent *", 0},{"_p_XMappingEvent"},{0}};
11960 static swig_type_info _swigt__p_otk__EventHandler
[] = {{"_p_otk__EventHandler", 0, "otk::EventHandler *", 0},{"_p_ob__Client", _p_ob__ClientTo_p_otk__EventHandler
},{"_p_ob__Actions", _p_ob__ActionsTo_p_otk__EventHandler
},{"_p_otk__EventHandler"},{"_p_ob__Frame", _p_ob__FrameTo_p_otk__EventHandler
},{"_p_ob__Openbox", _p_ob__OpenboxTo_p_otk__EventHandler
},{"_p_otk__Widget", _p_otk__WidgetTo_p_otk__EventHandler
},{"_p_ob__Screen", _p_ob__ScreenTo_p_otk__EventHandler
},{0}};
11961 static swig_type_info _swigt__p_XReparentEvent
[] = {{"_p_XReparentEvent", 0, "XReparentEvent *", 0},{"_p_XReparentEvent"},{0}};
11962 static swig_type_info _swigt__p_otk__EventDispatcher
[] = {{"_p_otk__EventDispatcher", 0, "otk::EventDispatcher *", 0},{"_p_otk__EventDispatcher"},{"_p_ob__Openbox", _p_ob__OpenboxTo_p_otk__EventDispatcher
},{0}};
11963 static swig_type_info _swigt__p_ob__Bindings
[] = {{"_p_ob__Bindings", 0, "ob::Bindings *", 0},{"_p_ob__Bindings"},{0}};
11964 static swig_type_info _swigt__p_ob__Openbox
[] = {{"_p_ob__Openbox", 0, "ob::Openbox *", 0},{"_p_ob__Openbox"},{0}};
11965 static swig_type_info _swigt__p_ob__Actions
[] = {{"_p_ob__Actions", 0, "ob::Actions *", 0},{"_p_ob__Actions"},{0}};
11966 static swig_type_info _swigt__p_otk__Widget
[] = {{"_p_otk__Widget", 0, "otk::Widget *", 0},{"_p_ob__Frame", _p_ob__FrameTo_p_otk__Widget
},{"_p_otk__Widget"},{0}};
11967 static swig_type_info _swigt__p_XEvent
[] = {{"_p_XEvent", 0, "XEvent *", 0},{"_p_XEvent"},{0}};
11968 static swig_type_info _swigt__p_otk__Property
[] = {{"_p_otk__Property", 0, "otk::Property *", 0},{"_p_otk__Property"},{0}};
11969 static swig_type_info _swigt__p_PyObject
[] = {{"_p_PyObject", 0, "PyObject *", 0},{"_p_PyObject"},{0}};
11970 static swig_type_info _swigt__p_otk__ScreenInfo
[] = {{"_p_otk__ScreenInfo", 0, "otk::ScreenInfo *", 0},{"_p_otk__ScreenInfo"},{0}};
11971 static swig_type_info _swigt__p_otk__RenderStyle
[] = {{"_p_otk__RenderStyle", 0, "otk::RenderStyle *", 0},{"_p_otk__RenderStyle"},{0}};
11972 static swig_type_info _swigt__p_ob__EventData
[] = {{"_p_ob__EventData", 0, "ob::EventData *", 0},{"_p_ob__EventData"},{0}};
11973 static swig_type_info _swigt__p_XModifierKeymap
[] = {{"_p_XModifierKeymap", 0, "XModifierKeymap *", 0},{"_p_XModifierKeymap"},{0}};
11974 static swig_type_info _swigt__p_XCreateWindowEvent
[] = {{"_p_XCreateWindowEvent", 0, "XCreateWindowEvent *", 0},{"_p_XCreateWindowEvent"},{0}};
11975 static swig_type_info _swigt__p_XDestroyWindowEvent
[] = {{"_p_XDestroyWindowEvent", 0, "XDestroyWindowEvent *", 0},{"_p_XDestroyWindowEvent"},{0}};
11976 static swig_type_info _swigt__p_otk__Property__StringVect
[] = {{"_p_otk__Property__StringVect", 0, "otk::Property::StringVect *", 0},{"_p_otk__Property__StringVect"},{0}};
11977 static swig_type_info _swigt__p_ob__WidgetBase
[] = {{"_p_ob__WidgetBase", 0, "ob::WidgetBase *", 0},{"_p_ob__WidgetBase"},{"_p_ob__Client", _p_ob__ClientTo_p_ob__WidgetBase
},{"_p_ob__Frame", _p_ob__FrameTo_p_ob__WidgetBase
},{"_p_ob__Screen", _p_ob__ScreenTo_p_ob__WidgetBase
},{0}};
11978 static swig_type_info _swigt__p_otk__Atoms
[] = {{"_p_otk__Atoms", 0, "otk::Atoms *", 0},{"_p_otk__Atoms"},{0}};
11979 static swig_type_info _swigt__p_XKeyEvent
[] = {{"_p_XKeyEvent", 0, "XKeyEvent *", 0},{"_p_XKeyEvent"},{0}};
11980 static swig_type_info _swigt__p_int
[] = {{"_p_int", 0, "int *", 0},{"_p_int"},{0}};
11981 static swig_type_info _swigt__p_otk__Strut
[] = {{"_p_otk__Strut", 0, "otk::Strut *", 0},{"_p_otk__Strut"},{0}};
11982 static swig_type_info _swigt__p_p_unsigned_long
[] = {{"_p_p_unsigned_long", 0, "unsigned long **", 0},{"_p_p_unsigned_long"},{0}};
11983 static swig_type_info _swigt__p_unsigned_long
[] = {{"_p_unsigned_long", 0, "unsigned long *", 0},{"_p_unsigned_long"},{0}};
11984 static swig_type_info _swigt__p_XMotionEvent
[] = {{"_p_XMotionEvent", 0, "XMotionEvent *", 0},{"_p_XMotionEvent"},{0}};
11985 static swig_type_info _swigt__p_XButtonEvent
[] = {{"_p_XButtonEvent", 0, "XButtonEvent *", 0},{"_p_XButtonEvent"},{0}};
11986 static swig_type_info _swigt__p_XSelectionEvent
[] = {{"_p_XSelectionEvent", 0, "XSelectionEvent *", 0},{"_p_XSelectionEvent"},{0}};
11988 static swig_type_info
*swig_types_initial
[] = {
11989 _swigt__p_otk__Point
,
11990 _swigt__p_ob__Client
,
11991 _swigt__p_XMapEvent
,
11992 _swigt__p_XUnmapEvent
,
11993 _swigt__p_XColormapEvent
,
11994 _swigt__p_XNoExposeEvent
,
11995 _swigt__p_XGraphicsExposeEvent
,
11996 _swigt__p_XExposeEvent
,
11997 _swigt__p_XFocusChangeEvent
,
11998 _swigt__p_XClientMessageEvent
,
11999 _swigt__p_ob__MouseData
,
12000 _swigt__p_XSelectionClearEvent
,
12001 _swigt__p_otk__Rect
,
12003 _swigt__p_XResizeRequestEvent
,
12004 _swigt__p_XMapRequestEvent
,
12005 _swigt__p_XConfigureRequestEvent
,
12006 _swigt__p_XCirculateRequestEvent
,
12007 _swigt__p_XGravityEvent
,
12008 _swigt__p_XVisibilityEvent
,
12009 _swigt__p_XPropertyEvent
,
12010 _swigt__p_XSelectionRequestEvent
,
12011 _swigt__p_ob__Cursors
,
12012 _swigt__p_otk__RenderControl
,
12013 _swigt__p_ob__MwmHints
,
12014 _swigt__p_ob__Screen
,
12015 _swigt__p_ob__Frame
,
12016 _swigt__p_ob__KeyData
,
12017 _swigt__p_XCirculateEvent
,
12018 _swigt__p_XConfigureEvent
,
12019 _swigt__p_XRectangle
,
12020 _swigt__p_otk__ustring
,
12021 _swigt__p_XCrossingEvent
,
12022 _swigt__p_otk__Display
,
12024 _swigt__p_XMappingEvent
,
12025 _swigt__p_otk__EventHandler
,
12026 _swigt__p_XReparentEvent
,
12027 _swigt__p_otk__EventDispatcher
,
12028 _swigt__p_ob__Bindings
,
12029 _swigt__p_ob__Openbox
,
12030 _swigt__p_ob__Actions
,
12031 _swigt__p_otk__Widget
,
12033 _swigt__p_otk__Property
,
12034 _swigt__p_PyObject
,
12035 _swigt__p_otk__ScreenInfo
,
12036 _swigt__p_otk__RenderStyle
,
12037 _swigt__p_ob__EventData
,
12038 _swigt__p_XModifierKeymap
,
12039 _swigt__p_XCreateWindowEvent
,
12040 _swigt__p_XDestroyWindowEvent
,
12041 _swigt__p_otk__Property__StringVect
,
12042 _swigt__p_ob__WidgetBase
,
12043 _swigt__p_otk__Atoms
,
12044 _swigt__p_XKeyEvent
,
12046 _swigt__p_otk__Strut
,
12047 _swigt__p_p_unsigned_long
,
12048 _swigt__p_unsigned_long
,
12049 _swigt__p_XMotionEvent
,
12050 _swigt__p_XButtonEvent
,
12051 _swigt__p_XSelectionEvent
,
12056 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */
12058 static swig_const_info swig_const_table
[] = {
12059 { SWIG_PY_INT
, (char *)"Property_ascii", (long) otk::Property::ascii
, 0, 0, 0},
12060 { SWIG_PY_INT
, (char *)"Property_utf8", (long) otk::Property::utf8
, 0, 0, 0},
12061 { SWIG_PY_INT
, (char *)"Property_NUM_STRING_TYPE", (long) otk::Property::NUM_STRING_TYPE
, 0, 0, 0},
12062 { SWIG_PY_INT
, (char *)"Openbox_State_Starting", (long) ob::Openbox::State_Starting
, 0, 0, 0},
12063 { SWIG_PY_INT
, (char *)"Openbox_State_Normal", (long) ob::Openbox::State_Normal
, 0, 0, 0},
12064 { SWIG_PY_INT
, (char *)"Openbox_State_Exiting", (long) ob::Openbox::State_Exiting
, 0, 0, 0},
12065 { SWIG_PY_INT
, (char *)"Screen_event_mask", (long) ob::Screen::event_mask
, 0, 0, 0},
12066 { SWIG_PY_INT
, (char *)"MwmHints_elements", (long) ob::MwmHints::elements
, 0, 0, 0},
12067 { SWIG_PY_INT
, (char *)"Client_Layer_Icon", (long) ob::Client::Layer_Icon
, 0, 0, 0},
12068 { SWIG_PY_INT
, (char *)"Client_Layer_Desktop", (long) ob::Client::Layer_Desktop
, 0, 0, 0},
12069 { SWIG_PY_INT
, (char *)"Client_Layer_Below", (long) ob::Client::Layer_Below
, 0, 0, 0},
12070 { SWIG_PY_INT
, (char *)"Client_Layer_Normal", (long) ob::Client::Layer_Normal
, 0, 0, 0},
12071 { SWIG_PY_INT
, (char *)"Client_Layer_Above", (long) ob::Client::Layer_Above
, 0, 0, 0},
12072 { SWIG_PY_INT
, (char *)"Client_Layer_Top", (long) ob::Client::Layer_Top
, 0, 0, 0},
12073 { SWIG_PY_INT
, (char *)"Client_Layer_Fullscreen", (long) ob::Client::Layer_Fullscreen
, 0, 0, 0},
12074 { SWIG_PY_INT
, (char *)"Client_Layer_Internal", (long) ob::Client::Layer_Internal
, 0, 0, 0},
12075 { SWIG_PY_INT
, (char *)"Client_NUM_LAYERS", (long) ob::Client::NUM_LAYERS
, 0, 0, 0},
12076 { SWIG_PY_INT
, (char *)"Client_TopLeft", (long) ob::Client::TopLeft
, 0, 0, 0},
12077 { SWIG_PY_INT
, (char *)"Client_TopRight", (long) ob::Client::TopRight
, 0, 0, 0},
12078 { SWIG_PY_INT
, (char *)"Client_BottomLeft", (long) ob::Client::BottomLeft
, 0, 0, 0},
12079 { SWIG_PY_INT
, (char *)"Client_BottomRight", (long) ob::Client::BottomRight
, 0, 0, 0},
12080 { SWIG_PY_INT
, (char *)"Client_Type_Desktop", (long) ob::Client::Type_Desktop
, 0, 0, 0},
12081 { SWIG_PY_INT
, (char *)"Client_Type_Dock", (long) ob::Client::Type_Dock
, 0, 0, 0},
12082 { SWIG_PY_INT
, (char *)"Client_Type_Toolbar", (long) ob::Client::Type_Toolbar
, 0, 0, 0},
12083 { SWIG_PY_INT
, (char *)"Client_Type_Menu", (long) ob::Client::Type_Menu
, 0, 0, 0},
12084 { SWIG_PY_INT
, (char *)"Client_Type_Utility", (long) ob::Client::Type_Utility
, 0, 0, 0},
12085 { SWIG_PY_INT
, (char *)"Client_Type_Splash", (long) ob::Client::Type_Splash
, 0, 0, 0},
12086 { SWIG_PY_INT
, (char *)"Client_Type_Dialog", (long) ob::Client::Type_Dialog
, 0, 0, 0},
12087 { SWIG_PY_INT
, (char *)"Client_Type_Normal", (long) ob::Client::Type_Normal
, 0, 0, 0},
12088 { SWIG_PY_INT
, (char *)"Client_MwmFlag_Functions", (long) ob::Client::MwmFlag_Functions
, 0, 0, 0},
12089 { SWIG_PY_INT
, (char *)"Client_MwmFlag_Decorations", (long) ob::Client::MwmFlag_Decorations
, 0, 0, 0},
12090 { SWIG_PY_INT
, (char *)"Client_MwmFunc_All", (long) ob::Client::MwmFunc_All
, 0, 0, 0},
12091 { SWIG_PY_INT
, (char *)"Client_MwmFunc_Resize", (long) ob::Client::MwmFunc_Resize
, 0, 0, 0},
12092 { SWIG_PY_INT
, (char *)"Client_MwmFunc_Move", (long) ob::Client::MwmFunc_Move
, 0, 0, 0},
12093 { SWIG_PY_INT
, (char *)"Client_MwmFunc_Iconify", (long) ob::Client::MwmFunc_Iconify
, 0, 0, 0},
12094 { SWIG_PY_INT
, (char *)"Client_MwmFunc_Maximize", (long) ob::Client::MwmFunc_Maximize
, 0, 0, 0},
12095 { SWIG_PY_INT
, (char *)"Client_MwmDecor_All", (long) ob::Client::MwmDecor_All
, 0, 0, 0},
12096 { SWIG_PY_INT
, (char *)"Client_MwmDecor_Border", (long) ob::Client::MwmDecor_Border
, 0, 0, 0},
12097 { SWIG_PY_INT
, (char *)"Client_MwmDecor_Handle", (long) ob::Client::MwmDecor_Handle
, 0, 0, 0},
12098 { SWIG_PY_INT
, (char *)"Client_MwmDecor_Title", (long) ob::Client::MwmDecor_Title
, 0, 0, 0},
12099 { SWIG_PY_INT
, (char *)"Client_MwmDecor_Iconify", (long) ob::Client::MwmDecor_Iconify
, 0, 0, 0},
12100 { SWIG_PY_INT
, (char *)"Client_MwmDecor_Maximize", (long) ob::Client::MwmDecor_Maximize
, 0, 0, 0},
12101 { SWIG_PY_INT
, (char *)"Client_Func_Resize", (long) ob::Client::Func_Resize
, 0, 0, 0},
12102 { SWIG_PY_INT
, (char *)"Client_Func_Move", (long) ob::Client::Func_Move
, 0, 0, 0},
12103 { SWIG_PY_INT
, (char *)"Client_Func_Iconify", (long) ob::Client::Func_Iconify
, 0, 0, 0},
12104 { SWIG_PY_INT
, (char *)"Client_Func_Maximize", (long) ob::Client::Func_Maximize
, 0, 0, 0},
12105 { SWIG_PY_INT
, (char *)"Client_Func_Shade", (long) ob::Client::Func_Shade
, 0, 0, 0},
12106 { SWIG_PY_INT
, (char *)"Client_Func_Fullscreen", (long) ob::Client::Func_Fullscreen
, 0, 0, 0},
12107 { SWIG_PY_INT
, (char *)"Client_Func_Close", (long) ob::Client::Func_Close
, 0, 0, 0},
12108 { SWIG_PY_INT
, (char *)"Client_Decor_Titlebar", (long) ob::Client::Decor_Titlebar
, 0, 0, 0},
12109 { SWIG_PY_INT
, (char *)"Client_Decor_Handle", (long) ob::Client::Decor_Handle
, 0, 0, 0},
12110 { SWIG_PY_INT
, (char *)"Client_Decor_Border", (long) ob::Client::Decor_Border
, 0, 0, 0},
12111 { SWIG_PY_INT
, (char *)"Client_Decor_Iconify", (long) ob::Client::Decor_Iconify
, 0, 0, 0},
12112 { SWIG_PY_INT
, (char *)"Client_Decor_Maximize", (long) ob::Client::Decor_Maximize
, 0, 0, 0},
12113 { SWIG_PY_INT
, (char *)"Client_Decor_AllDesktops", (long) ob::Client::Decor_AllDesktops
, 0, 0, 0},
12114 { SWIG_PY_INT
, (char *)"Client_Decor_Close", (long) ob::Client::Decor_Close
, 0, 0, 0},
12115 { SWIG_PY_INT
, (char *)"Client_State_Remove", (long) ob::Client::State_Remove
, 0, 0, 0},
12116 { SWIG_PY_INT
, (char *)"Client_State_Add", (long) ob::Client::State_Add
, 0, 0, 0},
12117 { SWIG_PY_INT
, (char *)"Client_State_Toggle", (long) ob::Client::State_Toggle
, 0, 0, 0},
12118 { SWIG_PY_INT
, (char *)"Client_event_mask", (long) ob::Client::event_mask
, 0, 0, 0},
12119 { SWIG_PY_INT
, (char *)"Client_no_propagate_mask", (long) ob::Client::no_propagate_mask
, 0, 0, 0},
12120 { SWIG_PY_INT
, (char *)"Client_ICONIC_DESKTOP", (long) ob::Client::ICONIC_DESKTOP
, 0, 0, 0},
12121 { SWIG_PY_INT
, (char *)"Frame_event_mask", (long) ob::Frame::event_mask
, 0, 0, 0},
12122 { SWIG_PY_INT
, (char *)"MC_Frame", (long) ob::MC_Frame
, 0, 0, 0},
12123 { SWIG_PY_INT
, (char *)"MC_Titlebar", (long) ob::MC_Titlebar
, 0, 0, 0},
12124 { SWIG_PY_INT
, (char *)"MC_Handle", (long) ob::MC_Handle
, 0, 0, 0},
12125 { SWIG_PY_INT
, (char *)"MC_Window", (long) ob::MC_Window
, 0, 0, 0},
12126 { SWIG_PY_INT
, (char *)"MC_MaximizeButton", (long) ob::MC_MaximizeButton
, 0, 0, 0},
12127 { SWIG_PY_INT
, (char *)"MC_CloseButton", (long) ob::MC_CloseButton
, 0, 0, 0},
12128 { SWIG_PY_INT
, (char *)"MC_IconifyButton", (long) ob::MC_IconifyButton
, 0, 0, 0},
12129 { SWIG_PY_INT
, (char *)"MC_AllDesktopsButton", (long) ob::MC_AllDesktopsButton
, 0, 0, 0},
12130 { SWIG_PY_INT
, (char *)"MC_Grip", (long) ob::MC_Grip
, 0, 0, 0},
12131 { SWIG_PY_INT
, (char *)"MC_Root", (long) ob::MC_Root
, 0, 0, 0},
12132 { SWIG_PY_INT
, (char *)"MC_MenuItem", (long) ob::MC_MenuItem
, 0, 0, 0},
12133 { SWIG_PY_INT
, (char *)"NUM_MOUSE_CONTEXT", (long) ob::NUM_MOUSE_CONTEXT
, 0, 0, 0},
12134 { SWIG_PY_INT
, (char *)"MousePress", (long) ob::MousePress
, 0, 0, 0},
12135 { SWIG_PY_INT
, (char *)"MouseClick", (long) ob::MouseClick
, 0, 0, 0},
12136 { SWIG_PY_INT
, (char *)"MouseDoubleClick", (long) ob::MouseDoubleClick
, 0, 0, 0},
12137 { SWIG_PY_INT
, (char *)"MouseMotion", (long) ob::MouseMotion
, 0, 0, 0},
12138 { SWIG_PY_INT
, (char *)"NUM_MOUSE_ACTION", (long) ob::NUM_MOUSE_ACTION
, 0, 0, 0},
12139 { SWIG_PY_INT
, (char *)"KC_Menu", (long) ob::KC_Menu
, 0, 0, 0},
12140 { SWIG_PY_INT
, (char *)"KC_All", (long) ob::KC_All
, 0, 0, 0},
12141 { SWIG_PY_INT
, (char *)"NUM_KEY_CONTEXT", (long) ob::NUM_KEY_CONTEXT
, 0, 0, 0},
12142 { SWIG_PY_INT
, (char *)"EventKeyPress", (long) ob::EventKeyPress
, 0, 0, 0},
12143 { SWIG_PY_INT
, (char *)"EventKeyRelease", (long) ob::EventKeyRelease
, 0, 0, 0},
12144 { SWIG_PY_INT
, (char *)"NUM_KEY_ACTION", (long) ob::NUM_KEY_ACTION
, 0, 0, 0},
12145 { SWIG_PY_INT
, (char *)"EventEnterWindow", (long) ob::EventEnterWindow
, 0, 0, 0},
12146 { SWIG_PY_INT
, (char *)"EventLeaveWindow", (long) ob::EventLeaveWindow
, 0, 0, 0},
12147 { SWIG_PY_INT
, (char *)"EventPlaceWindow", (long) ob::EventPlaceWindow
, 0, 0, 0},
12148 { SWIG_PY_INT
, (char *)"EventNewWindow", (long) ob::EventNewWindow
, 0, 0, 0},
12149 { SWIG_PY_INT
, (char *)"EventCloseWindow", (long) ob::EventCloseWindow
, 0, 0, 0},
12150 { SWIG_PY_INT
, (char *)"EventStartup", (long) ob::EventStartup
, 0, 0, 0},
12151 { SWIG_PY_INT
, (char *)"EventShutdown", (long) ob::EventShutdown
, 0, 0, 0},
12152 { SWIG_PY_INT
, (char *)"EventFocus", (long) ob::EventFocus
, 0, 0, 0},
12153 { SWIG_PY_INT
, (char *)"EventBell", (long) ob::EventBell
, 0, 0, 0},
12154 { SWIG_PY_INT
, (char *)"EventUrgentWindow", (long) ob::EventUrgentWindow
, 0, 0, 0},
12155 { SWIG_PY_INT
, (char *)"NUM_EVENTS", (long) ob::NUM_EVENTS
, 0, 0, 0},
12156 { SWIG_PY_INT
, (char *)"X_PROTOCOL", (long) 11, 0, 0, 0},
12157 { SWIG_PY_INT
, (char *)"X_PROTOCOL_REVISION", (long) 0, 0, 0, 0},
12158 { SWIG_PY_INT
, (char *)"None", (long) 0L, 0, 0, 0},
12159 { SWIG_PY_INT
, (char *)"ParentRelative", (long) 1L, 0, 0, 0},
12160 { SWIG_PY_INT
, (char *)"CopyFromParent", (long) 0L, 0, 0, 0},
12161 { SWIG_PY_INT
, (char *)"PointerWindow", (long) 0L, 0, 0, 0},
12162 { SWIG_PY_INT
, (char *)"InputFocus", (long) 1L, 0, 0, 0},
12163 { SWIG_PY_INT
, (char *)"PointerRoot", (long) 1L, 0, 0, 0},
12164 { SWIG_PY_INT
, (char *)"AnyPropertyType", (long) 0L, 0, 0, 0},
12165 { SWIG_PY_INT
, (char *)"AnyKey", (long) 0L, 0, 0, 0},
12166 { SWIG_PY_INT
, (char *)"AnyButton", (long) 0L, 0, 0, 0},
12167 { SWIG_PY_INT
, (char *)"AllTemporary", (long) 0L, 0, 0, 0},
12168 { SWIG_PY_INT
, (char *)"CurrentTime", (long) 0L, 0, 0, 0},
12169 { SWIG_PY_INT
, (char *)"NoSymbol", (long) 0L, 0, 0, 0},
12170 { SWIG_PY_INT
, (char *)"NoEventMask", (long) 0L, 0, 0, 0},
12171 { SWIG_PY_INT
, (char *)"KeyPressMask", (long) (1L<<0), 0, 0, 0},
12172 { SWIG_PY_INT
, (char *)"KeyReleaseMask", (long) (1L<<1), 0, 0, 0},
12173 { SWIG_PY_INT
, (char *)"ButtonPressMask", (long) (1L<<2), 0, 0, 0},
12174 { SWIG_PY_INT
, (char *)"ButtonReleaseMask", (long) (1L<<3), 0, 0, 0},
12175 { SWIG_PY_INT
, (char *)"EnterWindowMask", (long) (1L<<4), 0, 0, 0},
12176 { SWIG_PY_INT
, (char *)"LeaveWindowMask", (long) (1L<<5), 0, 0, 0},
12177 { SWIG_PY_INT
, (char *)"PointerMotionMask", (long) (1L<<6), 0, 0, 0},
12178 { SWIG_PY_INT
, (char *)"PointerMotionHintMask", (long) (1L<<7), 0, 0, 0},
12179 { SWIG_PY_INT
, (char *)"Button1MotionMask", (long) (1L<<8), 0, 0, 0},
12180 { SWIG_PY_INT
, (char *)"Button2MotionMask", (long) (1L<<9), 0, 0, 0},
12181 { SWIG_PY_INT
, (char *)"Button3MotionMask", (long) (1L<<10), 0, 0, 0},
12182 { SWIG_PY_INT
, (char *)"Button4MotionMask", (long) (1L<<11), 0, 0, 0},
12183 { SWIG_PY_INT
, (char *)"Button5MotionMask", (long) (1L<<12), 0, 0, 0},
12184 { SWIG_PY_INT
, (char *)"ButtonMotionMask", (long) (1L<<13), 0, 0, 0},
12185 { SWIG_PY_INT
, (char *)"KeymapStateMask", (long) (1L<<14), 0, 0, 0},
12186 { SWIG_PY_INT
, (char *)"ExposureMask", (long) (1L<<15), 0, 0, 0},
12187 { SWIG_PY_INT
, (char *)"VisibilityChangeMask", (long) (1L<<16), 0, 0, 0},
12188 { SWIG_PY_INT
, (char *)"StructureNotifyMask", (long) (1L<<17), 0, 0, 0},
12189 { SWIG_PY_INT
, (char *)"ResizeRedirectMask", (long) (1L<<18), 0, 0, 0},
12190 { SWIG_PY_INT
, (char *)"SubstructureNotifyMask", (long) (1L<<19), 0, 0, 0},
12191 { SWIG_PY_INT
, (char *)"SubstructureRedirectMask", (long) (1L<<20), 0, 0, 0},
12192 { SWIG_PY_INT
, (char *)"FocusChangeMask", (long) (1L<<21), 0, 0, 0},
12193 { SWIG_PY_INT
, (char *)"PropertyChangeMask", (long) (1L<<22), 0, 0, 0},
12194 { SWIG_PY_INT
, (char *)"ColormapChangeMask", (long) (1L<<23), 0, 0, 0},
12195 { SWIG_PY_INT
, (char *)"OwnerGrabButtonMask", (long) (1L<<24), 0, 0, 0},
12196 { SWIG_PY_INT
, (char *)"KeyPress", (long) 2, 0, 0, 0},
12197 { SWIG_PY_INT
, (char *)"KeyRelease", (long) 3, 0, 0, 0},
12198 { SWIG_PY_INT
, (char *)"ButtonPress", (long) 4, 0, 0, 0},
12199 { SWIG_PY_INT
, (char *)"ButtonRelease", (long) 5, 0, 0, 0},
12200 { SWIG_PY_INT
, (char *)"MotionNotify", (long) 6, 0, 0, 0},
12201 { SWIG_PY_INT
, (char *)"EnterNotify", (long) 7, 0, 0, 0},
12202 { SWIG_PY_INT
, (char *)"LeaveNotify", (long) 8, 0, 0, 0},
12203 { SWIG_PY_INT
, (char *)"FocusIn", (long) 9, 0, 0, 0},
12204 { SWIG_PY_INT
, (char *)"FocusOut", (long) 10, 0, 0, 0},
12205 { SWIG_PY_INT
, (char *)"KeymapNotify", (long) 11, 0, 0, 0},
12206 { SWIG_PY_INT
, (char *)"Expose", (long) 12, 0, 0, 0},
12207 { SWIG_PY_INT
, (char *)"GraphicsExpose", (long) 13, 0, 0, 0},
12208 { SWIG_PY_INT
, (char *)"NoExpose", (long) 14, 0, 0, 0},
12209 { SWIG_PY_INT
, (char *)"VisibilityNotify", (long) 15, 0, 0, 0},
12210 { SWIG_PY_INT
, (char *)"CreateNotify", (long) 16, 0, 0, 0},
12211 { SWIG_PY_INT
, (char *)"DestroyNotify", (long) 17, 0, 0, 0},
12212 { SWIG_PY_INT
, (char *)"UnmapNotify", (long) 18, 0, 0, 0},
12213 { SWIG_PY_INT
, (char *)"MapNotify", (long) 19, 0, 0, 0},
12214 { SWIG_PY_INT
, (char *)"MapRequest", (long) 20, 0, 0, 0},
12215 { SWIG_PY_INT
, (char *)"ReparentNotify", (long) 21, 0, 0, 0},
12216 { SWIG_PY_INT
, (char *)"ConfigureNotify", (long) 22, 0, 0, 0},
12217 { SWIG_PY_INT
, (char *)"ConfigureRequest", (long) 23, 0, 0, 0},
12218 { SWIG_PY_INT
, (char *)"GravityNotify", (long) 24, 0, 0, 0},
12219 { SWIG_PY_INT
, (char *)"ResizeRequest", (long) 25, 0, 0, 0},
12220 { SWIG_PY_INT
, (char *)"CirculateNotify", (long) 26, 0, 0, 0},
12221 { SWIG_PY_INT
, (char *)"CirculateRequest", (long) 27, 0, 0, 0},
12222 { SWIG_PY_INT
, (char *)"PropertyNotify", (long) 28, 0, 0, 0},
12223 { SWIG_PY_INT
, (char *)"SelectionClear", (long) 29, 0, 0, 0},
12224 { SWIG_PY_INT
, (char *)"SelectionRequest", (long) 30, 0, 0, 0},
12225 { SWIG_PY_INT
, (char *)"SelectionNotify", (long) 31, 0, 0, 0},
12226 { SWIG_PY_INT
, (char *)"ColormapNotify", (long) 32, 0, 0, 0},
12227 { SWIG_PY_INT
, (char *)"ClientMessage", (long) 33, 0, 0, 0},
12228 { SWIG_PY_INT
, (char *)"MappingNotify", (long) 34, 0, 0, 0},
12229 { SWIG_PY_INT
, (char *)"LASTEvent", (long) 35, 0, 0, 0},
12230 { SWIG_PY_INT
, (char *)"ShiftMask", (long) (1<<0), 0, 0, 0},
12231 { SWIG_PY_INT
, (char *)"LockMask", (long) (1<<1), 0, 0, 0},
12232 { SWIG_PY_INT
, (char *)"ControlMask", (long) (1<<2), 0, 0, 0},
12233 { SWIG_PY_INT
, (char *)"Mod1Mask", (long) (1<<3), 0, 0, 0},
12234 { SWIG_PY_INT
, (char *)"Mod2Mask", (long) (1<<4), 0, 0, 0},
12235 { SWIG_PY_INT
, (char *)"Mod3Mask", (long) (1<<5), 0, 0, 0},
12236 { SWIG_PY_INT
, (char *)"Mod4Mask", (long) (1<<6), 0, 0, 0},
12237 { SWIG_PY_INT
, (char *)"Mod5Mask", (long) (1<<7), 0, 0, 0},
12238 { SWIG_PY_INT
, (char *)"ShiftMapIndex", (long) 0, 0, 0, 0},
12239 { SWIG_PY_INT
, (char *)"LockMapIndex", (long) 1, 0, 0, 0},
12240 { SWIG_PY_INT
, (char *)"ControlMapIndex", (long) 2, 0, 0, 0},
12241 { SWIG_PY_INT
, (char *)"Mod1MapIndex", (long) 3, 0, 0, 0},
12242 { SWIG_PY_INT
, (char *)"Mod2MapIndex", (long) 4, 0, 0, 0},
12243 { SWIG_PY_INT
, (char *)"Mod3MapIndex", (long) 5, 0, 0, 0},
12244 { SWIG_PY_INT
, (char *)"Mod4MapIndex", (long) 6, 0, 0, 0},
12245 { SWIG_PY_INT
, (char *)"Mod5MapIndex", (long) 7, 0, 0, 0},
12246 { SWIG_PY_INT
, (char *)"Button1Mask", (long) (1<<8), 0, 0, 0},
12247 { SWIG_PY_INT
, (char *)"Button2Mask", (long) (1<<9), 0, 0, 0},
12248 { SWIG_PY_INT
, (char *)"Button3Mask", (long) (1<<10), 0, 0, 0},
12249 { SWIG_PY_INT
, (char *)"Button4Mask", (long) (1<<11), 0, 0, 0},
12250 { SWIG_PY_INT
, (char *)"Button5Mask", (long) (1<<12), 0, 0, 0},
12251 { SWIG_PY_INT
, (char *)"AnyModifier", (long) (1<<15), 0, 0, 0},
12252 { SWIG_PY_INT
, (char *)"Button1", (long) 1, 0, 0, 0},
12253 { SWIG_PY_INT
, (char *)"Button2", (long) 2, 0, 0, 0},
12254 { SWIG_PY_INT
, (char *)"Button3", (long) 3, 0, 0, 0},
12255 { SWIG_PY_INT
, (char *)"Button4", (long) 4, 0, 0, 0},
12256 { SWIG_PY_INT
, (char *)"Button5", (long) 5, 0, 0, 0},
12257 { SWIG_PY_INT
, (char *)"NotifyNormal", (long) 0, 0, 0, 0},
12258 { SWIG_PY_INT
, (char *)"NotifyGrab", (long) 1, 0, 0, 0},
12259 { SWIG_PY_INT
, (char *)"NotifyUngrab", (long) 2, 0, 0, 0},
12260 { SWIG_PY_INT
, (char *)"NotifyWhileGrabbed", (long) 3, 0, 0, 0},
12261 { SWIG_PY_INT
, (char *)"NotifyHint", (long) 1, 0, 0, 0},
12262 { SWIG_PY_INT
, (char *)"NotifyAncestor", (long) 0, 0, 0, 0},
12263 { SWIG_PY_INT
, (char *)"NotifyVirtual", (long) 1, 0, 0, 0},
12264 { SWIG_PY_INT
, (char *)"NotifyInferior", (long) 2, 0, 0, 0},
12265 { SWIG_PY_INT
, (char *)"NotifyNonlinear", (long) 3, 0, 0, 0},
12266 { SWIG_PY_INT
, (char *)"NotifyNonlinearVirtual", (long) 4, 0, 0, 0},
12267 { SWIG_PY_INT
, (char *)"NotifyPointer", (long) 5, 0, 0, 0},
12268 { SWIG_PY_INT
, (char *)"NotifyPointerRoot", (long) 6, 0, 0, 0},
12269 { SWIG_PY_INT
, (char *)"NotifyDetailNone", (long) 7, 0, 0, 0},
12270 { SWIG_PY_INT
, (char *)"VisibilityUnobscured", (long) 0, 0, 0, 0},
12271 { SWIG_PY_INT
, (char *)"VisibilityPartiallyObscured", (long) 1, 0, 0, 0},
12272 { SWIG_PY_INT
, (char *)"VisibilityFullyObscured", (long) 2, 0, 0, 0},
12273 { SWIG_PY_INT
, (char *)"PlaceOnTop", (long) 0, 0, 0, 0},
12274 { SWIG_PY_INT
, (char *)"PlaceOnBottom", (long) 1, 0, 0, 0},
12275 { SWIG_PY_INT
, (char *)"FamilyInternet", (long) 0, 0, 0, 0},
12276 { SWIG_PY_INT
, (char *)"FamilyDECnet", (long) 1, 0, 0, 0},
12277 { SWIG_PY_INT
, (char *)"FamilyChaos", (long) 2, 0, 0, 0},
12278 { SWIG_PY_INT
, (char *)"PropertyNewValue", (long) 0, 0, 0, 0},
12279 { SWIG_PY_INT
, (char *)"PropertyDelete", (long) 1, 0, 0, 0},
12280 { SWIG_PY_INT
, (char *)"ColormapUninstalled", (long) 0, 0, 0, 0},
12281 { SWIG_PY_INT
, (char *)"ColormapInstalled", (long) 1, 0, 0, 0},
12282 { SWIG_PY_INT
, (char *)"GrabModeSync", (long) 0, 0, 0, 0},
12283 { SWIG_PY_INT
, (char *)"GrabModeAsync", (long) 1, 0, 0, 0},
12284 { SWIG_PY_INT
, (char *)"GrabSuccess", (long) 0, 0, 0, 0},
12285 { SWIG_PY_INT
, (char *)"AlreadyGrabbed", (long) 1, 0, 0, 0},
12286 { SWIG_PY_INT
, (char *)"GrabInvalidTime", (long) 2, 0, 0, 0},
12287 { SWIG_PY_INT
, (char *)"GrabNotViewable", (long) 3, 0, 0, 0},
12288 { SWIG_PY_INT
, (char *)"GrabFrozen", (long) 4, 0, 0, 0},
12289 { SWIG_PY_INT
, (char *)"AsyncPointer", (long) 0, 0, 0, 0},
12290 { SWIG_PY_INT
, (char *)"SyncPointer", (long) 1, 0, 0, 0},
12291 { SWIG_PY_INT
, (char *)"ReplayPointer", (long) 2, 0, 0, 0},
12292 { SWIG_PY_INT
, (char *)"AsyncKeyboard", (long) 3, 0, 0, 0},
12293 { SWIG_PY_INT
, (char *)"SyncKeyboard", (long) 4, 0, 0, 0},
12294 { SWIG_PY_INT
, (char *)"ReplayKeyboard", (long) 5, 0, 0, 0},
12295 { SWIG_PY_INT
, (char *)"AsyncBoth", (long) 6, 0, 0, 0},
12296 { SWIG_PY_INT
, (char *)"SyncBoth", (long) 7, 0, 0, 0},
12297 { SWIG_PY_INT
, (char *)"RevertToParent", (long) 2, 0, 0, 0},
12298 { SWIG_PY_INT
, (char *)"Success", (long) 0, 0, 0, 0},
12299 { SWIG_PY_INT
, (char *)"BadRequest", (long) 1, 0, 0, 0},
12300 { SWIG_PY_INT
, (char *)"BadValue", (long) 2, 0, 0, 0},
12301 { SWIG_PY_INT
, (char *)"BadWindow", (long) 3, 0, 0, 0},
12302 { SWIG_PY_INT
, (char *)"BadPixmap", (long) 4, 0, 0, 0},
12303 { SWIG_PY_INT
, (char *)"BadAtom", (long) 5, 0, 0, 0},
12304 { SWIG_PY_INT
, (char *)"BadCursor", (long) 6, 0, 0, 0},
12305 { SWIG_PY_INT
, (char *)"BadFont", (long) 7, 0, 0, 0},
12306 { SWIG_PY_INT
, (char *)"BadMatch", (long) 8, 0, 0, 0},
12307 { SWIG_PY_INT
, (char *)"BadDrawable", (long) 9, 0, 0, 0},
12308 { SWIG_PY_INT
, (char *)"BadAccess", (long) 10, 0, 0, 0},
12309 { SWIG_PY_INT
, (char *)"BadAlloc", (long) 11, 0, 0, 0},
12310 { SWIG_PY_INT
, (char *)"BadColor", (long) 12, 0, 0, 0},
12311 { SWIG_PY_INT
, (char *)"BadGC", (long) 13, 0, 0, 0},
12312 { SWIG_PY_INT
, (char *)"BadIDChoice", (long) 14, 0, 0, 0},
12313 { SWIG_PY_INT
, (char *)"BadName", (long) 15, 0, 0, 0},
12314 { SWIG_PY_INT
, (char *)"BadLength", (long) 16, 0, 0, 0},
12315 { SWIG_PY_INT
, (char *)"BadImplementation", (long) 17, 0, 0, 0},
12316 { SWIG_PY_INT
, (char *)"FirstExtensionError", (long) 128, 0, 0, 0},
12317 { SWIG_PY_INT
, (char *)"LastExtensionError", (long) 255, 0, 0, 0},
12318 { SWIG_PY_INT
, (char *)"InputOutput", (long) 1, 0, 0, 0},
12319 { SWIG_PY_INT
, (char *)"InputOnly", (long) 2, 0, 0, 0},
12320 { SWIG_PY_INT
, (char *)"CWBackPixmap", (long) (1L<<0), 0, 0, 0},
12321 { SWIG_PY_INT
, (char *)"CWBackPixel", (long) (1L<<1), 0, 0, 0},
12322 { SWIG_PY_INT
, (char *)"CWBorderPixmap", (long) (1L<<2), 0, 0, 0},
12323 { SWIG_PY_INT
, (char *)"CWBorderPixel", (long) (1L<<3), 0, 0, 0},
12324 { SWIG_PY_INT
, (char *)"CWBitGravity", (long) (1L<<4), 0, 0, 0},
12325 { SWIG_PY_INT
, (char *)"CWWinGravity", (long) (1L<<5), 0, 0, 0},
12326 { SWIG_PY_INT
, (char *)"CWBackingStore", (long) (1L<<6), 0, 0, 0},
12327 { SWIG_PY_INT
, (char *)"CWBackingPlanes", (long) (1L<<7), 0, 0, 0},
12328 { SWIG_PY_INT
, (char *)"CWBackingPixel", (long) (1L<<8), 0, 0, 0},
12329 { SWIG_PY_INT
, (char *)"CWOverrideRedirect", (long) (1L<<9), 0, 0, 0},
12330 { SWIG_PY_INT
, (char *)"CWSaveUnder", (long) (1L<<10), 0, 0, 0},
12331 { SWIG_PY_INT
, (char *)"CWEventMask", (long) (1L<<11), 0, 0, 0},
12332 { SWIG_PY_INT
, (char *)"CWDontPropagate", (long) (1L<<12), 0, 0, 0},
12333 { SWIG_PY_INT
, (char *)"CWColormap", (long) (1L<<13), 0, 0, 0},
12334 { SWIG_PY_INT
, (char *)"CWCursor", (long) (1L<<14), 0, 0, 0},
12335 { SWIG_PY_INT
, (char *)"CWX", (long) (1<<0), 0, 0, 0},
12336 { SWIG_PY_INT
, (char *)"CWY", (long) (1<<1), 0, 0, 0},
12337 { SWIG_PY_INT
, (char *)"CWWidth", (long) (1<<2), 0, 0, 0},
12338 { SWIG_PY_INT
, (char *)"CWHeight", (long) (1<<3), 0, 0, 0},
12339 { SWIG_PY_INT
, (char *)"CWBorderWidth", (long) (1<<4), 0, 0, 0},
12340 { SWIG_PY_INT
, (char *)"CWSibling", (long) (1<<5), 0, 0, 0},
12341 { SWIG_PY_INT
, (char *)"CWStackMode", (long) (1<<6), 0, 0, 0},
12342 { SWIG_PY_INT
, (char *)"ForgetGravity", (long) 0, 0, 0, 0},
12343 { SWIG_PY_INT
, (char *)"NorthWestGravity", (long) 1, 0, 0, 0},
12344 { SWIG_PY_INT
, (char *)"NorthGravity", (long) 2, 0, 0, 0},
12345 { SWIG_PY_INT
, (char *)"NorthEastGravity", (long) 3, 0, 0, 0},
12346 { SWIG_PY_INT
, (char *)"WestGravity", (long) 4, 0, 0, 0},
12347 { SWIG_PY_INT
, (char *)"CenterGravity", (long) 5, 0, 0, 0},
12348 { SWIG_PY_INT
, (char *)"EastGravity", (long) 6, 0, 0, 0},
12349 { SWIG_PY_INT
, (char *)"SouthWestGravity", (long) 7, 0, 0, 0},
12350 { SWIG_PY_INT
, (char *)"SouthGravity", (long) 8, 0, 0, 0},
12351 { SWIG_PY_INT
, (char *)"SouthEastGravity", (long) 9, 0, 0, 0},
12352 { SWIG_PY_INT
, (char *)"StaticGravity", (long) 10, 0, 0, 0},
12353 { SWIG_PY_INT
, (char *)"UnmapGravity", (long) 0, 0, 0, 0},
12354 { SWIG_PY_INT
, (char *)"NotUseful", (long) 0, 0, 0, 0},
12355 { SWIG_PY_INT
, (char *)"WhenMapped", (long) 1, 0, 0, 0},
12356 { SWIG_PY_INT
, (char *)"Always", (long) 2, 0, 0, 0},
12357 { SWIG_PY_INT
, (char *)"IsUnmapped", (long) 0, 0, 0, 0},
12358 { SWIG_PY_INT
, (char *)"IsUnviewable", (long) 1, 0, 0, 0},
12359 { SWIG_PY_INT
, (char *)"IsViewable", (long) 2, 0, 0, 0},
12360 { SWIG_PY_INT
, (char *)"SetModeInsert", (long) 0, 0, 0, 0},
12361 { SWIG_PY_INT
, (char *)"SetModeDelete", (long) 1, 0, 0, 0},
12362 { SWIG_PY_INT
, (char *)"DestroyAll", (long) 0, 0, 0, 0},
12363 { SWIG_PY_INT
, (char *)"RetainPermanent", (long) 1, 0, 0, 0},
12364 { SWIG_PY_INT
, (char *)"RetainTemporary", (long) 2, 0, 0, 0},
12365 { SWIG_PY_INT
, (char *)"Above", (long) 0, 0, 0, 0},
12366 { SWIG_PY_INT
, (char *)"Below", (long) 1, 0, 0, 0},
12367 { SWIG_PY_INT
, (char *)"TopIf", (long) 2, 0, 0, 0},
12368 { SWIG_PY_INT
, (char *)"BottomIf", (long) 3, 0, 0, 0},
12369 { SWIG_PY_INT
, (char *)"Opposite", (long) 4, 0, 0, 0},
12370 { SWIG_PY_INT
, (char *)"RaiseLowest", (long) 0, 0, 0, 0},
12371 { SWIG_PY_INT
, (char *)"LowerHighest", (long) 1, 0, 0, 0},
12372 { SWIG_PY_INT
, (char *)"PropModeReplace", (long) 0, 0, 0, 0},
12373 { SWIG_PY_INT
, (char *)"PropModePrepend", (long) 1, 0, 0, 0},
12374 { SWIG_PY_INT
, (char *)"PropModeAppend", (long) 2, 0, 0, 0},
12375 { SWIG_PY_INT
, (char *)"GXclear", (long) 0x0, 0, 0, 0},
12376 { SWIG_PY_INT
, (char *)"GXand", (long) 0x1, 0, 0, 0},
12377 { SWIG_PY_INT
, (char *)"GXandReverse", (long) 0x2, 0, 0, 0},
12378 { SWIG_PY_INT
, (char *)"GXcopy", (long) 0x3, 0, 0, 0},
12379 { SWIG_PY_INT
, (char *)"GXandInverted", (long) 0x4, 0, 0, 0},
12380 { SWIG_PY_INT
, (char *)"GXnoop", (long) 0x5, 0, 0, 0},
12381 { SWIG_PY_INT
, (char *)"GXxor", (long) 0x6, 0, 0, 0},
12382 { SWIG_PY_INT
, (char *)"GXor", (long) 0x7, 0, 0, 0},
12383 { SWIG_PY_INT
, (char *)"GXnor", (long) 0x8, 0, 0, 0},
12384 { SWIG_PY_INT
, (char *)"GXequiv", (long) 0x9, 0, 0, 0},
12385 { SWIG_PY_INT
, (char *)"GXinvert", (long) 0xa, 0, 0, 0},
12386 { SWIG_PY_INT
, (char *)"GXorReverse", (long) 0xb, 0, 0, 0},
12387 { SWIG_PY_INT
, (char *)"GXcopyInverted", (long) 0xc, 0, 0, 0},
12388 { SWIG_PY_INT
, (char *)"GXorInverted", (long) 0xd, 0, 0, 0},
12389 { SWIG_PY_INT
, (char *)"GXnand", (long) 0xe, 0, 0, 0},
12390 { SWIG_PY_INT
, (char *)"GXset", (long) 0xf, 0, 0, 0},
12391 { SWIG_PY_INT
, (char *)"LineSolid", (long) 0, 0, 0, 0},
12392 { SWIG_PY_INT
, (char *)"LineOnOffDash", (long) 1, 0, 0, 0},
12393 { SWIG_PY_INT
, (char *)"LineDoubleDash", (long) 2, 0, 0, 0},
12394 { SWIG_PY_INT
, (char *)"CapNotLast", (long) 0, 0, 0, 0},
12395 { SWIG_PY_INT
, (char *)"CapButt", (long) 1, 0, 0, 0},
12396 { SWIG_PY_INT
, (char *)"CapRound", (long) 2, 0, 0, 0},
12397 { SWIG_PY_INT
, (char *)"CapProjecting", (long) 3, 0, 0, 0},
12398 { SWIG_PY_INT
, (char *)"JoinMiter", (long) 0, 0, 0, 0},
12399 { SWIG_PY_INT
, (char *)"JoinRound", (long) 1, 0, 0, 0},
12400 { SWIG_PY_INT
, (char *)"JoinBevel", (long) 2, 0, 0, 0},
12401 { SWIG_PY_INT
, (char *)"FillSolid", (long) 0, 0, 0, 0},
12402 { SWIG_PY_INT
, (char *)"FillTiled", (long) 1, 0, 0, 0},
12403 { SWIG_PY_INT
, (char *)"FillStippled", (long) 2, 0, 0, 0},
12404 { SWIG_PY_INT
, (char *)"FillOpaqueStippled", (long) 3, 0, 0, 0},
12405 { SWIG_PY_INT
, (char *)"EvenOddRule", (long) 0, 0, 0, 0},
12406 { SWIG_PY_INT
, (char *)"WindingRule", (long) 1, 0, 0, 0},
12407 { SWIG_PY_INT
, (char *)"ClipByChildren", (long) 0, 0, 0, 0},
12408 { SWIG_PY_INT
, (char *)"IncludeInferiors", (long) 1, 0, 0, 0},
12409 { SWIG_PY_INT
, (char *)"Unsorted", (long) 0, 0, 0, 0},
12410 { SWIG_PY_INT
, (char *)"YSorted", (long) 1, 0, 0, 0},
12411 { SWIG_PY_INT
, (char *)"YXSorted", (long) 2, 0, 0, 0},
12412 { SWIG_PY_INT
, (char *)"YXBanded", (long) 3, 0, 0, 0},
12413 { SWIG_PY_INT
, (char *)"CoordModeOrigin", (long) 0, 0, 0, 0},
12414 { SWIG_PY_INT
, (char *)"CoordModePrevious", (long) 1, 0, 0, 0},
12415 { SWIG_PY_INT
, (char *)"Complex", (long) 0, 0, 0, 0},
12416 { SWIG_PY_INT
, (char *)"Nonconvex", (long) 1, 0, 0, 0},
12417 { SWIG_PY_INT
, (char *)"Convex", (long) 2, 0, 0, 0},
12418 { SWIG_PY_INT
, (char *)"ArcChord", (long) 0, 0, 0, 0},
12419 { SWIG_PY_INT
, (char *)"ArcPieSlice", (long) 1, 0, 0, 0},
12420 { SWIG_PY_INT
, (char *)"GCFunction", (long) (1L<<0), 0, 0, 0},
12421 { SWIG_PY_INT
, (char *)"GCPlaneMask", (long) (1L<<1), 0, 0, 0},
12422 { SWIG_PY_INT
, (char *)"GCForeground", (long) (1L<<2), 0, 0, 0},
12423 { SWIG_PY_INT
, (char *)"GCBackground", (long) (1L<<3), 0, 0, 0},
12424 { SWIG_PY_INT
, (char *)"GCLineWidth", (long) (1L<<4), 0, 0, 0},
12425 { SWIG_PY_INT
, (char *)"GCLineStyle", (long) (1L<<5), 0, 0, 0},
12426 { SWIG_PY_INT
, (char *)"GCCapStyle", (long) (1L<<6), 0, 0, 0},
12427 { SWIG_PY_INT
, (char *)"GCJoinStyle", (long) (1L<<7), 0, 0, 0},
12428 { SWIG_PY_INT
, (char *)"GCFillStyle", (long) (1L<<8), 0, 0, 0},
12429 { SWIG_PY_INT
, (char *)"GCFillRule", (long) (1L<<9), 0, 0, 0},
12430 { SWIG_PY_INT
, (char *)"GCTile", (long) (1L<<10), 0, 0, 0},
12431 { SWIG_PY_INT
, (char *)"GCStipple", (long) (1L<<11), 0, 0, 0},
12432 { SWIG_PY_INT
, (char *)"GCTileStipXOrigin", (long) (1L<<12), 0, 0, 0},
12433 { SWIG_PY_INT
, (char *)"GCTileStipYOrigin", (long) (1L<<13), 0, 0, 0},
12434 { SWIG_PY_INT
, (char *)"GCFont", (long) (1L<<14), 0, 0, 0},
12435 { SWIG_PY_INT
, (char *)"GCSubwindowMode", (long) (1L<<15), 0, 0, 0},
12436 { SWIG_PY_INT
, (char *)"GCGraphicsExposures", (long) (1L<<16), 0, 0, 0},
12437 { SWIG_PY_INT
, (char *)"GCClipXOrigin", (long) (1L<<17), 0, 0, 0},
12438 { SWIG_PY_INT
, (char *)"GCClipYOrigin", (long) (1L<<18), 0, 0, 0},
12439 { SWIG_PY_INT
, (char *)"GCClipMask", (long) (1L<<19), 0, 0, 0},
12440 { SWIG_PY_INT
, (char *)"GCDashOffset", (long) (1L<<20), 0, 0, 0},
12441 { SWIG_PY_INT
, (char *)"GCDashList", (long) (1L<<21), 0, 0, 0},
12442 { SWIG_PY_INT
, (char *)"GCArcMode", (long) (1L<<22), 0, 0, 0},
12443 { SWIG_PY_INT
, (char *)"GCLastBit", (long) 22, 0, 0, 0},
12444 { SWIG_PY_INT
, (char *)"FontLeftToRight", (long) 0, 0, 0, 0},
12445 { SWIG_PY_INT
, (char *)"FontRightToLeft", (long) 1, 0, 0, 0},
12446 { SWIG_PY_INT
, (char *)"FontChange", (long) 255, 0, 0, 0},
12447 { SWIG_PY_INT
, (char *)"XYBitmap", (long) 0, 0, 0, 0},
12448 { SWIG_PY_INT
, (char *)"XYPixmap", (long) 1, 0, 0, 0},
12449 { SWIG_PY_INT
, (char *)"ZPixmap", (long) 2, 0, 0, 0},
12450 { SWIG_PY_INT
, (char *)"AllocNone", (long) 0, 0, 0, 0},
12451 { SWIG_PY_INT
, (char *)"AllocAll", (long) 1, 0, 0, 0},
12452 { SWIG_PY_INT
, (char *)"DoRed", (long) (1<<0), 0, 0, 0},
12453 { SWIG_PY_INT
, (char *)"DoGreen", (long) (1<<1), 0, 0, 0},
12454 { SWIG_PY_INT
, (char *)"DoBlue", (long) (1<<2), 0, 0, 0},
12455 { SWIG_PY_INT
, (char *)"CursorShape", (long) 0, 0, 0, 0},
12456 { SWIG_PY_INT
, (char *)"TileShape", (long) 1, 0, 0, 0},
12457 { SWIG_PY_INT
, (char *)"StippleShape", (long) 2, 0, 0, 0},
12458 { SWIG_PY_INT
, (char *)"AutoRepeatModeOff", (long) 0, 0, 0, 0},
12459 { SWIG_PY_INT
, (char *)"AutoRepeatModeOn", (long) 1, 0, 0, 0},
12460 { SWIG_PY_INT
, (char *)"AutoRepeatModeDefault", (long) 2, 0, 0, 0},
12461 { SWIG_PY_INT
, (char *)"LedModeOff", (long) 0, 0, 0, 0},
12462 { SWIG_PY_INT
, (char *)"LedModeOn", (long) 1, 0, 0, 0},
12463 { SWIG_PY_INT
, (char *)"KBKeyClickPercent", (long) (1L<<0), 0, 0, 0},
12464 { SWIG_PY_INT
, (char *)"KBBellPercent", (long) (1L<<1), 0, 0, 0},
12465 { SWIG_PY_INT
, (char *)"KBBellPitch", (long) (1L<<2), 0, 0, 0},
12466 { SWIG_PY_INT
, (char *)"KBBellDuration", (long) (1L<<3), 0, 0, 0},
12467 { SWIG_PY_INT
, (char *)"KBLed", (long) (1L<<4), 0, 0, 0},
12468 { SWIG_PY_INT
, (char *)"KBLedMode", (long) (1L<<5), 0, 0, 0},
12469 { SWIG_PY_INT
, (char *)"KBKey", (long) (1L<<6), 0, 0, 0},
12470 { SWIG_PY_INT
, (char *)"KBAutoRepeatMode", (long) (1L<<7), 0, 0, 0},
12471 { SWIG_PY_INT
, (char *)"MappingSuccess", (long) 0, 0, 0, 0},
12472 { SWIG_PY_INT
, (char *)"MappingBusy", (long) 1, 0, 0, 0},
12473 { SWIG_PY_INT
, (char *)"MappingFailed", (long) 2, 0, 0, 0},
12474 { SWIG_PY_INT
, (char *)"MappingModifier", (long) 0, 0, 0, 0},
12475 { SWIG_PY_INT
, (char *)"MappingKeyboard", (long) 1, 0, 0, 0},
12476 { SWIG_PY_INT
, (char *)"MappingPointer", (long) 2, 0, 0, 0},
12477 { SWIG_PY_INT
, (char *)"DontPreferBlanking", (long) 0, 0, 0, 0},
12478 { SWIG_PY_INT
, (char *)"PreferBlanking", (long) 1, 0, 0, 0},
12479 { SWIG_PY_INT
, (char *)"DefaultBlanking", (long) 2, 0, 0, 0},
12480 { SWIG_PY_INT
, (char *)"DisableScreenSaver", (long) 0, 0, 0, 0},
12481 { SWIG_PY_INT
, (char *)"DisableScreenInterval", (long) 0, 0, 0, 0},
12482 { SWIG_PY_INT
, (char *)"DontAllowExposures", (long) 0, 0, 0, 0},
12483 { SWIG_PY_INT
, (char *)"AllowExposures", (long) 1, 0, 0, 0},
12484 { SWIG_PY_INT
, (char *)"DefaultExposures", (long) 2, 0, 0, 0},
12485 { SWIG_PY_INT
, (char *)"ScreenSaverReset", (long) 0, 0, 0, 0},
12486 { SWIG_PY_INT
, (char *)"ScreenSaverActive", (long) 1, 0, 0, 0},
12487 { SWIG_PY_INT
, (char *)"HostInsert", (long) 0, 0, 0, 0},
12488 { SWIG_PY_INT
, (char *)"HostDelete", (long) 1, 0, 0, 0},
12489 { SWIG_PY_INT
, (char *)"EnableAccess", (long) 1, 0, 0, 0},
12490 { SWIG_PY_INT
, (char *)"DisableAccess", (long) 0, 0, 0, 0},
12491 { SWIG_PY_INT
, (char *)"StaticGray", (long) 0, 0, 0, 0},
12492 { SWIG_PY_INT
, (char *)"GrayScale", (long) 1, 0, 0, 0},
12493 { SWIG_PY_INT
, (char *)"StaticColor", (long) 2, 0, 0, 0},
12494 { SWIG_PY_INT
, (char *)"PseudoColor", (long) 3, 0, 0, 0},
12495 { SWIG_PY_INT
, (char *)"TrueColor", (long) 4, 0, 0, 0},
12496 { SWIG_PY_INT
, (char *)"DirectColor", (long) 5, 0, 0, 0},
12497 { SWIG_PY_INT
, (char *)"LSBFirst", (long) 0, 0, 0, 0},
12498 { SWIG_PY_INT
, (char *)"MSBFirst", (long) 1, 0, 0, 0},
12508 SWIGEXPORT(void) SWIG_init(void) {
12509 static PyObject
*SWIG_globals
= 0;
12510 static int typeinit
= 0;
12513 if (!SWIG_globals
) SWIG_globals
= SWIG_newvarlink();
12514 m
= Py_InitModule((char *) SWIG_name
, SwigMethods
);
12515 d
= PyModule_GetDict(m
);
12518 for (i
= 0; swig_types_initial
[i
]; i
++) {
12519 swig_types
[i
] = SWIG_TypeRegister(swig_types_initial
[i
]);
12523 SWIG_InstallConstants(d
,swig_const_table
);