X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2Fopenbox_wrap.cc;h=d240800f900007ddfdb0e2d5ab45528f51febc05;hb=678bb52123bde0b71037393827c03f6b17904a60;hp=3df4afca97235301384062ad0101ac05743108bf;hpb=34cd50ec5173e350b1d8b350fade2948c50113ee;p=chaz%2Fopenbox diff --git a/src/openbox_wrap.cc b/src/openbox_wrap.cc index 3df4afca..d240800f 100644 --- a/src/openbox_wrap.cc +++ b/src/openbox_wrap.cc @@ -652,26 +652,31 @@ SWIG_InstallConstants(PyObject *d, swig_const_info constants[]) { #define SWIGTYPE_p_otk__Style swig_types[4] #define SWIGTYPE_p_ob__OBFrame swig_types[5] #define SWIGTYPE_p_XReparentEvent swig_types[6] -#define SWIGTYPE_p_ob__OBClient swig_types[7] -#define SWIGTYPE_p_ob__Openbox swig_types[8] -#define SWIGTYPE_p_otk__Strut swig_types[9] -#define SWIGTYPE_p_XConfigureRequestEvent swig_types[10] -#define SWIGTYPE_p_XMapRequestEvent swig_types[11] -#define SWIGTYPE_p_otk__OtkEventHandler swig_types[12] -#define SWIGTYPE_p_otk__Rect swig_types[13] -#define SWIGTYPE_p_ob__OBWidget swig_types[14] -#define SWIGTYPE_p_XFocusChangeEvent swig_types[15] -#define SWIGTYPE_p_XClientMessageEvent swig_types[16] -#define SWIGTYPE_p_otk__OBProperty swig_types[17] -#define SWIGTYPE_p_otk__OtkEventDispatcher swig_types[18] -#define SWIGTYPE_p_XPropertyEvent swig_types[19] -#define SWIGTYPE_p_XDestroyWindowEvent swig_types[20] -#define SWIGTYPE_p_otk__BImageControl swig_types[21] -#define SWIGTYPE_p_PyObject swig_types[22] -#define SWIGTYPE_p_ob__OBBindings swig_types[23] -#define SWIGTYPE_p_ob__MwmHints swig_types[24] -#define SWIGTYPE_p_XUnmapEvent swig_types[25] -static swig_type_info *swig_types[27]; +#define SWIGTYPE_p_ob__MouseData swig_types[7] +#define SWIGTYPE_p_ob__OBClient swig_types[8] +#define SWIGTYPE_p_ob__Openbox swig_types[9] +#define SWIGTYPE_p_otk__Strut swig_types[10] +#define SWIGTYPE_p_ob__KeyData swig_types[11] +#define SWIGTYPE_p_XMapRequestEvent swig_types[12] +#define SWIGTYPE_p_XConfigureRequestEvent swig_types[13] +#define SWIGTYPE_p_otk__Point swig_types[14] +#define SWIGTYPE_p_otk__OtkEventHandler swig_types[15] +#define SWIGTYPE_p_std__string swig_types[16] +#define SWIGTYPE_p_otk__Rect swig_types[17] +#define SWIGTYPE_p_ob__OBWidget swig_types[18] +#define SWIGTYPE_p_XClientMessageEvent swig_types[19] +#define SWIGTYPE_p_XFocusChangeEvent swig_types[20] +#define SWIGTYPE_p_otk__OBProperty swig_types[21] +#define SWIGTYPE_p_ob__EventData swig_types[22] +#define SWIGTYPE_p_otk__OtkEventDispatcher swig_types[23] +#define SWIGTYPE_p_XPropertyEvent swig_types[24] +#define SWIGTYPE_p_XDestroyWindowEvent swig_types[25] +#define SWIGTYPE_p_otk__BImageControl swig_types[26] +#define SWIGTYPE_p_PyObject swig_types[27] +#define SWIGTYPE_p_ob__OBBindings swig_types[28] +#define SWIGTYPE_p_ob__MwmHints swig_types[29] +#define SWIGTYPE_p_XUnmapEvent swig_types[30] +static swig_type_info *swig_types[32]; /* -------- TYPES TABLE (END) -------- */ @@ -692,6 +697,8 @@ static swig_type_info *swig_types[27]; #include "client.hh" #include "bindings.hh" #include "actions.hh" +#include "python.hh" +#include "otk/otk.hh" #define SWIG_MemoryError 1 @@ -778,6 +785,70 @@ static std::string SwigString_AsString(PyObject* o) { ob::Openbox *Openbox_instance() { return ob::Openbox::instance; } +namespace ob { +void python_callback(PyObject *func, MouseData *data) +{ + PyObject *arglist; + PyObject *result; + + arglist = Py_BuildValue("(O)", SWIG_NewPointerObj((void *) data, + SWIGTYPE_p_ob__MouseData, + 0)); + + // call the callback + result = PyEval_CallObject(func, arglist); + if (!result || PyErr_Occurred()) { + // an exception occured in the script, display it + PyErr_Print(); + } + + Py_XDECREF(result); + Py_DECREF(arglist); +} + +void python_callback(PyObject *func, EventData *data) +{ + PyObject *arglist; + PyObject *result; + + arglist = Py_BuildValue("(O)", SWIG_NewPointerObj((void *) data, + SWIGTYPE_p_ob__EventData, + 0)); + + // call the callback + result = PyEval_CallObject(func, arglist); + if (!result || PyErr_Occurred()) { + // an exception occured in the script, display it + PyErr_Print(); + } + + Py_XDECREF(result); + Py_DECREF(arglist); +} + +void python_callback(PyObject *func, KeyData *data) +{ + PyObject *arglist; + PyObject *result; + + arglist = Py_BuildValue("(O)", SWIG_NewPointerObj((void *) data, + SWIGTYPE_p_ob__KeyData, + 0)); + + // call the callback + result = PyEval_CallObject(func, arglist); + if (!result || PyErr_Occurred()) { + // an exception occured in the script, display it + PyErr_Print(); + } + + Py_XDECREF(result); + Py_DECREF(arglist); +} + +} + + #include ob::OBClient *ob_OBScreen_client(ob::OBScreen *self,int i){ @@ -1514,6 +1585,40 @@ static PyObject *_wrap_OBScreen_focuswindow(PyObject *self, PyObject *args) { } +static PyObject *_wrap_OBScreen_desktop(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::OBScreen *arg1 = (ob::OBScreen *) 0 ; + long result; + PyObject * obj0 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"O:OBScreen_desktop",&obj0)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__OBScreen,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + result = (long)((ob::OBScreen const *)arg1)->desktop(); + + resultobj = PyInt_FromLong((long)result); + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_OBScreen_numDesktops(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::OBScreen *arg1 = (ob::OBScreen *) 0 ; + long result; + PyObject * obj0 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"O:OBScreen_numDesktops",&obj0)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__OBScreen,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + result = (long)((ob::OBScreen const *)arg1)->numDesktops(); + + resultobj = PyInt_FromLong((long)result); + return resultobj; + fail: + return NULL; +} + + static PyObject *_wrap_OBScreen_updateStrut(PyObject *self, PyObject *args) { PyObject *resultobj; ob::OBScreen *arg1 = (ob::OBScreen *) 0 ; @@ -1608,6 +1713,100 @@ static PyObject *_wrap_OBScreen_restack(PyObject *self, PyObject *args) { } +static PyObject *_wrap_OBScreen_setDesktopName(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::OBScreen *arg1 = (ob::OBScreen *) 0 ; + long arg2 ; + std::string *arg3 = 0 ; + std::string temp3 ; + PyObject * obj0 = 0 ; + PyObject * obj2 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"OlO:OBScreen_setDesktopName",&obj0,&arg2,&obj2)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__OBScreen,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + { + if (PyString_Check(obj2)) { + temp3 = std::string(PyString_AsString(obj2)); + arg3 = &temp3; + }else { + SWIG_exception(SWIG_TypeError, "string expected"); + } + } + (arg1)->setDesktopName(arg2,(std::string const &)*arg3); + + Py_INCREF(Py_None); resultobj = Py_None; + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_OBScreen_propertyHandler(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::OBScreen *arg1 = (ob::OBScreen *) 0 ; + XPropertyEvent *arg2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"OO:OBScreen_propertyHandler",&obj0,&obj1)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__OBScreen,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_XPropertyEvent,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + if (arg2 == NULL) { + PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail; + } + (arg1)->propertyHandler((XPropertyEvent const &)*arg2); + + Py_INCREF(Py_None); resultobj = Py_None; + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_OBScreen_clientMessageHandler(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::OBScreen *arg1 = (ob::OBScreen *) 0 ; + XClientMessageEvent *arg2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"OO:OBScreen_clientMessageHandler",&obj0,&obj1)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__OBScreen,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_XClientMessageEvent,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + if (arg2 == NULL) { + PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail; + } + (arg1)->clientMessageHandler((XClientMessageEvent const &)*arg2); + + Py_INCREF(Py_None); resultobj = Py_None; + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_OBScreen_mapRequestHandler(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::OBScreen *arg1 = (ob::OBScreen *) 0 ; + XMapRequestEvent *arg2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"OO:OBScreen_mapRequestHandler",&obj0,&obj1)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__OBScreen,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_XMapRequestEvent,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + if (arg2 == NULL) { + PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail; + } + (arg1)->mapRequestHandler((XMapRequestEvent const &)*arg2); + + Py_INCREF(Py_None); resultobj = Py_None; + return resultobj; + fail: + return NULL; +} + + static PyObject * OBScreen_swigregister(PyObject *self, PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL; @@ -1874,12 +2073,12 @@ static PyObject *_wrap_OBClient_normal(PyObject *self, PyObject *args) { static PyObject *_wrap_OBClient_desktop(PyObject *self, PyObject *args) { PyObject *resultobj; ob::OBClient *arg1 = (ob::OBClient *) 0 ; - unsigned long result; + long result; PyObject * obj0 = 0 ; if(!PyArg_ParseTuple(args,(char *)"O:OBClient_desktop",&obj0)) goto fail; if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__OBClient,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; - result = (unsigned long)((ob::OBClient const *)arg1)->desktop(); + result = (long)((ob::OBClient const *)arg1)->desktop(); resultobj = PyInt_FromLong((long)result); return resultobj; @@ -2352,59 +2551,6 @@ static PyObject *_wrap_OBClient_resize(PyObject *self, PyObject *args) { } -static PyObject *_wrap_OBClient_close(PyObject *self, PyObject *args) { - PyObject *resultobj; - ob::OBClient *arg1 = (ob::OBClient *) 0 ; - PyObject * obj0 = 0 ; - - if(!PyArg_ParseTuple(args,(char *)"O:OBClient_close",&obj0)) goto fail; - if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__OBClient,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; - (arg1)->close(); - - Py_INCREF(Py_None); resultobj = Py_None; - return resultobj; - fail: - return NULL; -} - - -static PyObject *_wrap_OBClient_setStackLayer(PyObject *self, PyObject *args) { - PyObject *resultobj; - ob::OBClient *arg1 = (ob::OBClient *) 0 ; - int arg2 ; - PyObject * obj0 = 0 ; - - if(!PyArg_ParseTuple(args,(char *)"Oi:OBClient_setStackLayer",&obj0,&arg2)) goto fail; - if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__OBClient,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; - (arg1)->setStackLayer(arg2); - - Py_INCREF(Py_None); resultobj = Py_None; - return resultobj; - fail: - return NULL; -} - - -static PyObject *_wrap_OBClient_shade(PyObject *self, PyObject *args) { - PyObject *resultobj; - ob::OBClient *arg1 = (ob::OBClient *) 0 ; - bool arg2 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if(!PyArg_ParseTuple(args,(char *)"OO:OBClient_shade",&obj0,&obj1)) goto fail; - if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__OBClient,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; - arg2 = (bool) PyInt_AsLong(obj1); - if (PyErr_Occurred()) SWIG_fail; - (arg1)->shade(arg2); - - Py_INCREF(Py_None); resultobj = Py_None; - return resultobj; - fail: - return NULL; -} - - static PyObject *_wrap_OBClient_focus(PyObject *self, PyObject *args) { PyObject *resultobj; ob::OBClient *arg1 = (ob::OBClient *) 0 ; @@ -2413,7 +2559,7 @@ static PyObject *_wrap_OBClient_focus(PyObject *self, PyObject *args) { if(!PyArg_ParseTuple(args,(char *)"O:OBClient_focus",&obj0)) goto fail; if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__OBClient,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; - result = (bool)(arg1)->focus(); + result = (bool)((ob::OBClient const *)arg1)->focus(); resultobj = PyInt_FromLong((long)result); return resultobj; @@ -2429,7 +2575,7 @@ static PyObject *_wrap_OBClient_unfocus(PyObject *self, PyObject *args) { if(!PyArg_ParseTuple(args,(char *)"O:OBClient_unfocus",&obj0)) goto fail; if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__OBClient,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; - (arg1)->unfocus(); + ((ob::OBClient const *)arg1)->unfocus(); Py_INCREF(Py_None); resultobj = Py_None; return resultobj; @@ -2614,28 +2760,6 @@ static PyObject *_wrap_OBClient_reparentHandler(PyObject *self, PyObject *args) } -static PyObject *_wrap_OBClient_mapRequestHandler(PyObject *self, PyObject *args) { - PyObject *resultobj; - ob::OBClient *arg1 = (ob::OBClient *) 0 ; - XMapRequestEvent *arg2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - - if(!PyArg_ParseTuple(args,(char *)"OO:OBClient_mapRequestHandler",&obj0,&obj1)) goto fail; - if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__OBClient,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; - if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_XMapRequestEvent,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; - if (arg2 == NULL) { - PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail; - } - (arg1)->mapRequestHandler((XMapRequestEvent const &)*arg2); - - Py_INCREF(Py_None); resultobj = Py_None; - return resultobj; - fail: - return NULL; -} - - static PyObject * OBClient_swigregister(PyObject *self, PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL; @@ -2643,102 +2767,1261 @@ static PyObject * OBClient_swigregister(PyObject *self, PyObject *args) { Py_INCREF(obj); return Py_BuildValue((char *)""); } -static PyObject *_wrap_mbind(PyObject *self, PyObject *args) { +static PyObject *_wrap_MouseData_screen_set(PyObject *self, PyObject *args) { PyObject *resultobj; - std::string *arg1 = 0 ; + ob::MouseData *arg1 = (ob::MouseData *) 0 ; int arg2 ; - int arg3 ; - PyObject *arg4 = (PyObject *) 0 ; - PyObject *result; - std::string temp1 ; PyObject * obj0 = 0 ; - PyObject * obj3 = 0 ; - if(!PyArg_ParseTuple(args,(char *)"OiiO:mbind",&obj0,&arg2,&arg3,&obj3)) goto fail; - { - if (PyString_Check(obj0)) { - temp1 = std::string(PyString_AsString(obj0)); - arg1 = &temp1; - }else { - SWIG_exception(SWIG_TypeError, "string expected"); - } - } - arg4 = obj3; - result = (PyObject *)ob::mbind((std::string const &)*arg1,(ob::MouseContext )arg2,(ob::MouseAction )arg3,arg4); + if(!PyArg_ParseTuple(args,(char *)"Oi:MouseData_screen_set",&obj0,&arg2)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__MouseData,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + if (arg1) (arg1)->screen = arg2; - resultobj = result; + Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } -static PyObject *_wrap_kbind(PyObject *self, PyObject *args) { +static PyObject *_wrap_MouseData_screen_get(PyObject *self, PyObject *args) { PyObject *resultobj; - PyObject *arg1 = (PyObject *) 0 ; - int arg2 ; - PyObject *arg3 = (PyObject *) 0 ; - PyObject *result; + ob::MouseData *arg1 = (ob::MouseData *) 0 ; + int result; PyObject * obj0 = 0 ; - PyObject * obj2 = 0 ; - if(!PyArg_ParseTuple(args,(char *)"OiO:kbind",&obj0,&arg2,&obj2)) goto fail; - arg1 = obj0; - arg3 = obj2; - result = (PyObject *)ob::kbind(arg1,(ob::KeyContext )arg2,arg3); + if(!PyArg_ParseTuple(args,(char *)"O:MouseData_screen_get",&obj0)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__MouseData,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + result = (int) ((arg1)->screen); - resultobj = result; + resultobj = PyInt_FromLong((long)result); return resultobj; fail: return NULL; } -static PyObject *_wrap_ebind(PyObject *self, PyObject *args) { +static PyObject *_wrap_MouseData_client_set(PyObject *self, PyObject *args) { PyObject *resultobj; - int arg1 ; - PyObject *arg2 = (PyObject *) 0 ; - PyObject *result; + ob::MouseData *arg1 = (ob::MouseData *) 0 ; + ob::OBClient *arg2 = (ob::OBClient *) 0 ; + PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; - if(!PyArg_ParseTuple(args,(char *)"iO:ebind",&arg1,&obj1)) goto fail; - arg2 = obj1; - result = (PyObject *)ob::ebind((ob::EventAction )arg1,arg2); + if(!PyArg_ParseTuple(args,(char *)"OO:MouseData_client_set",&obj0,&obj1)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__MouseData,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_ob__OBClient,SWIG_POINTER_EXCEPTION | SWIG_POINTER_DISOWN )) == -1) SWIG_fail; + if (arg1) (arg1)->client = arg2; - resultobj = result; + Py_INCREF(Py_None); resultobj = Py_None; return resultobj; fail: return NULL; } -static PyObject *_wrap_set_reset_key(PyObject *self, PyObject *args) { +static PyObject *_wrap_MouseData_client_get(PyObject *self, PyObject *args) { PyObject *resultobj; - std::string *arg1 = 0 ; - std::string temp1 ; + ob::MouseData *arg1 = (ob::MouseData *) 0 ; + ob::OBClient *result; PyObject * obj0 = 0 ; - if(!PyArg_ParseTuple(args,(char *)"O:set_reset_key",&obj0)) goto fail; - { - if (PyString_Check(obj0)) { - temp1 = std::string(PyString_AsString(obj0)); - arg1 = &temp1; - }else { - SWIG_exception(SWIG_TypeError, "string expected"); - } - } - ob::set_reset_key((std::string const &)*arg1); + if(!PyArg_ParseTuple(args,(char *)"O:MouseData_client_get",&obj0)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__MouseData,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + result = (ob::OBClient *) ((arg1)->client); - Py_INCREF(Py_None); resultobj = Py_None; + resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_ob__OBClient, 0); return resultobj; fail: return NULL; } -static PyMethodDef SwigMethods[] = { - { (char *)"Openbox_instance", _wrap_Openbox_instance, METH_VARARGS }, - { (char *)"Cursors_session_set", _wrap_Cursors_session_set, METH_VARARGS }, +static PyObject *_wrap_MouseData_time_set(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::MouseData *arg1 = (ob::MouseData *) 0 ; + Time arg2 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"OO:MouseData_time_set",&obj0,&obj1)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__MouseData,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + arg2 = (Time) PyInt_AsLong(obj1); + if (PyErr_Occurred()) SWIG_fail; + if (arg1) (arg1)->time = arg2; + + Py_INCREF(Py_None); resultobj = Py_None; + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_MouseData_time_get(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::MouseData *arg1 = (ob::MouseData *) 0 ; + Time result; + PyObject * obj0 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"O:MouseData_time_get",&obj0)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__MouseData,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + result = (Time) ((arg1)->time); + + resultobj = PyInt_FromLong((long)result); + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_MouseData_state_set(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::MouseData *arg1 = (ob::MouseData *) 0 ; + unsigned int arg2 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"OO:MouseData_state_set",&obj0,&obj1)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__MouseData,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + arg2 = (unsigned int) PyInt_AsLong(obj1); + if (PyErr_Occurred()) SWIG_fail; + if (arg1) (arg1)->state = arg2; + + Py_INCREF(Py_None); resultobj = Py_None; + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_MouseData_state_get(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::MouseData *arg1 = (ob::MouseData *) 0 ; + unsigned int result; + PyObject * obj0 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"O:MouseData_state_get",&obj0)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__MouseData,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + result = (unsigned int) ((arg1)->state); + + resultobj = PyInt_FromLong((long)result); + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_MouseData_button_set(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::MouseData *arg1 = (ob::MouseData *) 0 ; + unsigned int arg2 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"OO:MouseData_button_set",&obj0,&obj1)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__MouseData,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + arg2 = (unsigned int) PyInt_AsLong(obj1); + if (PyErr_Occurred()) SWIG_fail; + if (arg1) (arg1)->button = arg2; + + Py_INCREF(Py_None); resultobj = Py_None; + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_MouseData_button_get(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::MouseData *arg1 = (ob::MouseData *) 0 ; + unsigned int result; + PyObject * obj0 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"O:MouseData_button_get",&obj0)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__MouseData,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + result = (unsigned int) ((arg1)->button); + + resultobj = PyInt_FromLong((long)result); + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_MouseData_context_set(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::MouseData *arg1 = (ob::MouseData *) 0 ; + int arg2 ; + PyObject * obj0 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"Oi:MouseData_context_set",&obj0,&arg2)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__MouseData,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + if (arg1) (arg1)->context = (ob::MouseContext )arg2; + + Py_INCREF(Py_None); resultobj = Py_None; + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_MouseData_context_get(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::MouseData *arg1 = (ob::MouseData *) 0 ; + int result; + PyObject * obj0 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"O:MouseData_context_get",&obj0)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__MouseData,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + result = (int) ((arg1)->context); + + resultobj = PyInt_FromLong((long)result); + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_MouseData_action_set(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::MouseData *arg1 = (ob::MouseData *) 0 ; + int arg2 ; + PyObject * obj0 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"Oi:MouseData_action_set",&obj0,&arg2)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__MouseData,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + if (arg1) (arg1)->action = (ob::MouseAction )arg2; + + Py_INCREF(Py_None); resultobj = Py_None; + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_MouseData_action_get(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::MouseData *arg1 = (ob::MouseData *) 0 ; + int result; + PyObject * obj0 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"O:MouseData_action_get",&obj0)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__MouseData,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + result = (int) ((arg1)->action); + + resultobj = PyInt_FromLong((long)result); + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_MouseData_xroot_set(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::MouseData *arg1 = (ob::MouseData *) 0 ; + int arg2 ; + PyObject * obj0 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"Oi:MouseData_xroot_set",&obj0,&arg2)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__MouseData,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + if (arg1) (arg1)->xroot = arg2; + + Py_INCREF(Py_None); resultobj = Py_None; + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_MouseData_xroot_get(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::MouseData *arg1 = (ob::MouseData *) 0 ; + int result; + PyObject * obj0 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"O:MouseData_xroot_get",&obj0)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__MouseData,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + result = (int) ((arg1)->xroot); + + resultobj = PyInt_FromLong((long)result); + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_MouseData_yroot_set(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::MouseData *arg1 = (ob::MouseData *) 0 ; + int arg2 ; + PyObject * obj0 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"Oi:MouseData_yroot_set",&obj0,&arg2)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__MouseData,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + if (arg1) (arg1)->yroot = arg2; + + Py_INCREF(Py_None); resultobj = Py_None; + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_MouseData_yroot_get(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::MouseData *arg1 = (ob::MouseData *) 0 ; + int result; + PyObject * obj0 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"O:MouseData_yroot_get",&obj0)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__MouseData,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + result = (int) ((arg1)->yroot); + + resultobj = PyInt_FromLong((long)result); + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_MouseData_pressx_set(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::MouseData *arg1 = (ob::MouseData *) 0 ; + int arg2 ; + PyObject * obj0 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"Oi:MouseData_pressx_set",&obj0,&arg2)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__MouseData,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + if (arg1) (arg1)->pressx = arg2; + + Py_INCREF(Py_None); resultobj = Py_None; + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_MouseData_pressx_get(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::MouseData *arg1 = (ob::MouseData *) 0 ; + int result; + PyObject * obj0 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"O:MouseData_pressx_get",&obj0)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__MouseData,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + result = (int) ((arg1)->pressx); + + resultobj = PyInt_FromLong((long)result); + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_MouseData_pressy_set(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::MouseData *arg1 = (ob::MouseData *) 0 ; + int arg2 ; + PyObject * obj0 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"Oi:MouseData_pressy_set",&obj0,&arg2)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__MouseData,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + if (arg1) (arg1)->pressy = arg2; + + Py_INCREF(Py_None); resultobj = Py_None; + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_MouseData_pressy_get(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::MouseData *arg1 = (ob::MouseData *) 0 ; + int result; + PyObject * obj0 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"O:MouseData_pressy_get",&obj0)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__MouseData,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + result = (int) ((arg1)->pressy); + + resultobj = PyInt_FromLong((long)result); + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_MouseData_press_clientx_set(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::MouseData *arg1 = (ob::MouseData *) 0 ; + int arg2 ; + PyObject * obj0 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"Oi:MouseData_press_clientx_set",&obj0,&arg2)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__MouseData,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + if (arg1) (arg1)->press_clientx = arg2; + + Py_INCREF(Py_None); resultobj = Py_None; + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_MouseData_press_clientx_get(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::MouseData *arg1 = (ob::MouseData *) 0 ; + int result; + PyObject * obj0 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"O:MouseData_press_clientx_get",&obj0)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__MouseData,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + result = (int) ((arg1)->press_clientx); + + resultobj = PyInt_FromLong((long)result); + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_MouseData_press_clienty_set(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::MouseData *arg1 = (ob::MouseData *) 0 ; + int arg2 ; + PyObject * obj0 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"Oi:MouseData_press_clienty_set",&obj0,&arg2)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__MouseData,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + if (arg1) (arg1)->press_clienty = arg2; + + Py_INCREF(Py_None); resultobj = Py_None; + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_MouseData_press_clienty_get(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::MouseData *arg1 = (ob::MouseData *) 0 ; + int result; + PyObject * obj0 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"O:MouseData_press_clienty_get",&obj0)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__MouseData,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + result = (int) ((arg1)->press_clienty); + + resultobj = PyInt_FromLong((long)result); + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_MouseData_press_clientwidth_set(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::MouseData *arg1 = (ob::MouseData *) 0 ; + int arg2 ; + PyObject * obj0 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"Oi:MouseData_press_clientwidth_set",&obj0,&arg2)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__MouseData,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + if (arg1) (arg1)->press_clientwidth = arg2; + + Py_INCREF(Py_None); resultobj = Py_None; + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_MouseData_press_clientwidth_get(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::MouseData *arg1 = (ob::MouseData *) 0 ; + int result; + PyObject * obj0 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"O:MouseData_press_clientwidth_get",&obj0)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__MouseData,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + result = (int) ((arg1)->press_clientwidth); + + resultobj = PyInt_FromLong((long)result); + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_MouseData_press_clientheight_set(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::MouseData *arg1 = (ob::MouseData *) 0 ; + int arg2 ; + PyObject * obj0 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"Oi:MouseData_press_clientheight_set",&obj0,&arg2)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__MouseData,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + if (arg1) (arg1)->press_clientheight = arg2; + + Py_INCREF(Py_None); resultobj = Py_None; + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_MouseData_press_clientheight_get(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::MouseData *arg1 = (ob::MouseData *) 0 ; + int result; + PyObject * obj0 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"O:MouseData_press_clientheight_get",&obj0)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__MouseData,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + result = (int) ((arg1)->press_clientheight); + + resultobj = PyInt_FromLong((long)result); + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_new_MouseData__SWIG_0(PyObject *self, PyObject *args) { + PyObject *resultobj; + int arg1 ; + ob::OBClient *arg2 = (ob::OBClient *) 0 ; + Time arg3 ; + unsigned int arg4 ; + unsigned int arg5 ; + int arg6 ; + int arg7 ; + int arg8 ; + int arg9 ; + otk::Point *arg10 = 0 ; + otk::Rect *arg11 = 0 ; + ob::MouseData *result; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + PyObject * obj3 = 0 ; + PyObject * obj4 = 0 ; + PyObject * obj9 = 0 ; + PyObject * obj10 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"iOOOOiiiiOO:new_MouseData",&arg1,&obj1,&obj2,&obj3,&obj4,&arg6,&arg7,&arg8,&arg9,&obj9,&obj10)) goto fail; + if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_ob__OBClient,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + arg3 = (Time) PyInt_AsLong(obj2); + if (PyErr_Occurred()) SWIG_fail; + arg4 = (unsigned int) PyInt_AsLong(obj3); + if (PyErr_Occurred()) SWIG_fail; + arg5 = (unsigned int) PyInt_AsLong(obj4); + if (PyErr_Occurred()) SWIG_fail; + if ((SWIG_ConvertPtr(obj9,(void **) &arg10, SWIGTYPE_p_otk__Point,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + if (arg10 == NULL) { + PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail; + } + if ((SWIG_ConvertPtr(obj10,(void **) &arg11, SWIGTYPE_p_otk__Rect,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + if (arg11 == NULL) { + PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail; + } + 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); + + resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_ob__MouseData, 1); + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_new_MouseData__SWIG_1(PyObject *self, PyObject *args) { + PyObject *resultobj; + int arg1 ; + ob::OBClient *arg2 = (ob::OBClient *) 0 ; + Time arg3 ; + unsigned int arg4 ; + unsigned int arg5 ; + int arg6 ; + int arg7 ; + ob::MouseData *result; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + PyObject * obj3 = 0 ; + PyObject * obj4 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"iOOOOii:new_MouseData",&arg1,&obj1,&obj2,&obj3,&obj4,&arg6,&arg7)) goto fail; + if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_ob__OBClient,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + arg3 = (Time) PyInt_AsLong(obj2); + if (PyErr_Occurred()) SWIG_fail; + arg4 = (unsigned int) PyInt_AsLong(obj3); + if (PyErr_Occurred()) SWIG_fail; + arg5 = (unsigned int) PyInt_AsLong(obj4); + if (PyErr_Occurred()) SWIG_fail; + result = (ob::MouseData *)new ob::MouseData(arg1,arg2,arg3,arg4,arg5,(ob::MouseContext )arg6,(ob::MouseAction )arg7); + + resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_ob__MouseData, 1); + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_new_MouseData(PyObject *self, PyObject *args) { + int argc; + PyObject *argv[12]; + int ii; + + argc = PyObject_Length(args); + for (ii = 0; (ii < argc) && (ii < 11); ii++) { + argv[ii] = PyTuple_GetItem(args,ii); + } + if (argc == 7) { + int _v; + { + _v = (PyInt_Check(argv[0]) || PyLong_Check(argv[0])) ? 1 : 0; + } + if (_v) { + { + void *ptr; + if (SWIG_ConvertPtr(argv[1], (void **) &ptr, SWIGTYPE_p_ob__OBClient, 0) == -1) { + _v = 0; + PyErr_Clear(); + }else { + _v = 1; + } + } + if (_v) { + { + _v = (PyInt_Check(argv[2]) || PyLong_Check(argv[2])) ? 1 : 0; + } + if (_v) { + { + _v = (PyInt_Check(argv[3]) || PyLong_Check(argv[3])) ? 1 : 0; + } + if (_v) { + { + _v = (PyInt_Check(argv[4]) || PyLong_Check(argv[4])) ? 1 : 0; + } + if (_v) { + { + _v = (PyInt_Check(argv[5]) || PyLong_Check(argv[5])) ? 1 : 0; + } + if (_v) { + { + _v = (PyInt_Check(argv[6]) || PyLong_Check(argv[6])) ? 1 : 0; + } + if (_v) { + return _wrap_new_MouseData__SWIG_1(self,args); + } + } + } + } + } + } + } + } + if (argc == 11) { + int _v; + { + _v = (PyInt_Check(argv[0]) || PyLong_Check(argv[0])) ? 1 : 0; + } + if (_v) { + { + void *ptr; + if (SWIG_ConvertPtr(argv[1], (void **) &ptr, SWIGTYPE_p_ob__OBClient, 0) == -1) { + _v = 0; + PyErr_Clear(); + }else { + _v = 1; + } + } + if (_v) { + { + _v = (PyInt_Check(argv[2]) || PyLong_Check(argv[2])) ? 1 : 0; + } + if (_v) { + { + _v = (PyInt_Check(argv[3]) || PyLong_Check(argv[3])) ? 1 : 0; + } + if (_v) { + { + _v = (PyInt_Check(argv[4]) || PyLong_Check(argv[4])) ? 1 : 0; + } + if (_v) { + { + _v = (PyInt_Check(argv[5]) || PyLong_Check(argv[5])) ? 1 : 0; + } + if (_v) { + { + _v = (PyInt_Check(argv[6]) || PyLong_Check(argv[6])) ? 1 : 0; + } + if (_v) { + { + _v = (PyInt_Check(argv[7]) || PyLong_Check(argv[7])) ? 1 : 0; + } + if (_v) { + { + _v = (PyInt_Check(argv[8]) || PyLong_Check(argv[8])) ? 1 : 0; + } + if (_v) { + { + void *ptr; + if (SWIG_ConvertPtr(argv[9], (void **) &ptr, SWIGTYPE_p_otk__Point, 0) == -1) { + _v = 0; + PyErr_Clear(); + }else { + _v = 1; + } + } + if (_v) { + { + void *ptr; + if (SWIG_ConvertPtr(argv[10], (void **) &ptr, SWIGTYPE_p_otk__Rect, 0) == -1) { + _v = 0; + PyErr_Clear(); + }else { + _v = 1; + } + } + if (_v) { + return _wrap_new_MouseData__SWIG_0(self,args); + } + } + } + } + } + } + } + } + } + } + } + } + + PyErr_SetString(PyExc_TypeError,"No matching function for overloaded 'new_MouseData'"); + return NULL; +} + + +static PyObject * MouseData_swigregister(PyObject *self, PyObject *args) { + PyObject *obj; + if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL; + SWIG_TypeClientData(SWIGTYPE_p_ob__MouseData, obj); + Py_INCREF(obj); + return Py_BuildValue((char *)""); +} +static PyObject *_wrap_EventData_screen_set(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::EventData *arg1 = (ob::EventData *) 0 ; + int arg2 ; + PyObject * obj0 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"Oi:EventData_screen_set",&obj0,&arg2)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__EventData,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + if (arg1) (arg1)->screen = arg2; + + Py_INCREF(Py_None); resultobj = Py_None; + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_EventData_screen_get(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::EventData *arg1 = (ob::EventData *) 0 ; + int result; + PyObject * obj0 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"O:EventData_screen_get",&obj0)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__EventData,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + result = (int) ((arg1)->screen); + + resultobj = PyInt_FromLong((long)result); + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_EventData_client_set(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::EventData *arg1 = (ob::EventData *) 0 ; + ob::OBClient *arg2 = (ob::OBClient *) 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"OO:EventData_client_set",&obj0,&obj1)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__EventData,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_ob__OBClient,SWIG_POINTER_EXCEPTION | SWIG_POINTER_DISOWN )) == -1) SWIG_fail; + if (arg1) (arg1)->client = arg2; + + Py_INCREF(Py_None); resultobj = Py_None; + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_EventData_client_get(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::EventData *arg1 = (ob::EventData *) 0 ; + ob::OBClient *result; + PyObject * obj0 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"O:EventData_client_get",&obj0)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__EventData,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + result = (ob::OBClient *) ((arg1)->client); + + resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_ob__OBClient, 0); + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_EventData_state_set(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::EventData *arg1 = (ob::EventData *) 0 ; + unsigned int arg2 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"OO:EventData_state_set",&obj0,&obj1)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__EventData,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + arg2 = (unsigned int) PyInt_AsLong(obj1); + if (PyErr_Occurred()) SWIG_fail; + if (arg1) (arg1)->state = arg2; + + Py_INCREF(Py_None); resultobj = Py_None; + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_EventData_state_get(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::EventData *arg1 = (ob::EventData *) 0 ; + unsigned int result; + PyObject * obj0 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"O:EventData_state_get",&obj0)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__EventData,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + result = (unsigned int) ((arg1)->state); + + resultobj = PyInt_FromLong((long)result); + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_EventData_action_set(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::EventData *arg1 = (ob::EventData *) 0 ; + int arg2 ; + PyObject * obj0 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"Oi:EventData_action_set",&obj0,&arg2)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__EventData,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + if (arg1) (arg1)->action = (ob::EventAction )arg2; + + Py_INCREF(Py_None); resultobj = Py_None; + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_EventData_action_get(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::EventData *arg1 = (ob::EventData *) 0 ; + int result; + PyObject * obj0 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"O:EventData_action_get",&obj0)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__EventData,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + result = (int) ((arg1)->action); + + resultobj = PyInt_FromLong((long)result); + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_new_EventData(PyObject *self, PyObject *args) { + PyObject *resultobj; + int arg1 ; + ob::OBClient *arg2 = (ob::OBClient *) 0 ; + int arg3 ; + unsigned int arg4 ; + ob::EventData *result; + PyObject * obj1 = 0 ; + PyObject * obj3 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"iOiO:new_EventData",&arg1,&obj1,&arg3,&obj3)) goto fail; + if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_ob__OBClient,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + arg4 = (unsigned int) PyInt_AsLong(obj3); + if (PyErr_Occurred()) SWIG_fail; + result = (ob::EventData *)new ob::EventData(arg1,arg2,(ob::EventAction )arg3,arg4); + + resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_ob__EventData, 1); + return resultobj; + fail: + return NULL; +} + + +static PyObject * EventData_swigregister(PyObject *self, PyObject *args) { + PyObject *obj; + if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL; + SWIG_TypeClientData(SWIGTYPE_p_ob__EventData, obj); + Py_INCREF(obj); + return Py_BuildValue((char *)""); +} +static PyObject *_wrap_KeyData_screen_set(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::KeyData *arg1 = (ob::KeyData *) 0 ; + int arg2 ; + PyObject * obj0 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"Oi:KeyData_screen_set",&obj0,&arg2)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__KeyData,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + if (arg1) (arg1)->screen = arg2; + + Py_INCREF(Py_None); resultobj = Py_None; + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_KeyData_screen_get(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::KeyData *arg1 = (ob::KeyData *) 0 ; + int result; + PyObject * obj0 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"O:KeyData_screen_get",&obj0)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__KeyData,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + result = (int) ((arg1)->screen); + + resultobj = PyInt_FromLong((long)result); + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_KeyData_client_set(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::KeyData *arg1 = (ob::KeyData *) 0 ; + ob::OBClient *arg2 = (ob::OBClient *) 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"OO:KeyData_client_set",&obj0,&obj1)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__KeyData,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_ob__OBClient,SWIG_POINTER_EXCEPTION | SWIG_POINTER_DISOWN )) == -1) SWIG_fail; + if (arg1) (arg1)->client = arg2; + + Py_INCREF(Py_None); resultobj = Py_None; + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_KeyData_client_get(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::KeyData *arg1 = (ob::KeyData *) 0 ; + ob::OBClient *result; + PyObject * obj0 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"O:KeyData_client_get",&obj0)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__KeyData,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + result = (ob::OBClient *) ((arg1)->client); + + resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_ob__OBClient, 0); + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_KeyData_time_set(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::KeyData *arg1 = (ob::KeyData *) 0 ; + Time arg2 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"OO:KeyData_time_set",&obj0,&obj1)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__KeyData,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + arg2 = (Time) PyInt_AsLong(obj1); + if (PyErr_Occurred()) SWIG_fail; + if (arg1) (arg1)->time = arg2; + + Py_INCREF(Py_None); resultobj = Py_None; + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_KeyData_time_get(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::KeyData *arg1 = (ob::KeyData *) 0 ; + Time result; + PyObject * obj0 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"O:KeyData_time_get",&obj0)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__KeyData,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + result = (Time) ((arg1)->time); + + resultobj = PyInt_FromLong((long)result); + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_KeyData_state_set(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::KeyData *arg1 = (ob::KeyData *) 0 ; + unsigned int arg2 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"OO:KeyData_state_set",&obj0,&obj1)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__KeyData,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + arg2 = (unsigned int) PyInt_AsLong(obj1); + if (PyErr_Occurred()) SWIG_fail; + if (arg1) (arg1)->state = arg2; + + Py_INCREF(Py_None); resultobj = Py_None; + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_KeyData_state_get(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::KeyData *arg1 = (ob::KeyData *) 0 ; + unsigned int result; + PyObject * obj0 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"O:KeyData_state_get",&obj0)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__KeyData,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + result = (unsigned int) ((arg1)->state); + + resultobj = PyInt_FromLong((long)result); + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_KeyData_key_set(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::KeyData *arg1 = (ob::KeyData *) 0 ; + std::string *arg2 = (std::string *) 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"OO:KeyData_key_set",&obj0,&obj1)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__KeyData,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_std__string,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + if (arg1) (arg1)->key = *arg2; + + Py_INCREF(Py_None); resultobj = Py_None; + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_KeyData_key_get(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::KeyData *arg1 = (ob::KeyData *) 0 ; + std::string *result; + PyObject * obj0 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"O:KeyData_key_get",&obj0)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__KeyData,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + result = (std::string *)& ((arg1)->key); + + resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_std__string, 0); + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_new_KeyData(PyObject *self, PyObject *args) { + PyObject *resultobj; + int arg1 ; + ob::OBClient *arg2 = (ob::OBClient *) 0 ; + Time arg3 ; + unsigned int arg4 ; + unsigned int arg5 ; + ob::KeyData *result; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + PyObject * obj3 = 0 ; + PyObject * obj4 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"iOOOO:new_KeyData",&arg1,&obj1,&obj2,&obj3,&obj4)) goto fail; + if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_ob__OBClient,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + arg3 = (Time) PyInt_AsLong(obj2); + if (PyErr_Occurred()) SWIG_fail; + arg4 = (unsigned int) PyInt_AsLong(obj3); + if (PyErr_Occurred()) SWIG_fail; + arg5 = (unsigned int) PyInt_AsLong(obj4); + if (PyErr_Occurred()) SWIG_fail; + result = (ob::KeyData *)new ob::KeyData(arg1,arg2,arg3,arg4,arg5); + + resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_ob__KeyData, 1); + return resultobj; + fail: + return NULL; +} + + +static PyObject * KeyData_swigregister(PyObject *self, PyObject *args) { + PyObject *obj; + if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL; + SWIG_TypeClientData(SWIGTYPE_p_ob__KeyData, obj); + Py_INCREF(obj); + return Py_BuildValue((char *)""); +} +static PyObject *_wrap_mbind(PyObject *self, PyObject *args) { + PyObject *resultobj; + std::string *arg1 = 0 ; + int arg2 ; + int arg3 ; + PyObject *arg4 = (PyObject *) 0 ; + PyObject *result; + std::string temp1 ; + PyObject * obj0 = 0 ; + PyObject * obj3 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"OiiO:mbind",&obj0,&arg2,&arg3,&obj3)) goto fail; + { + if (PyString_Check(obj0)) { + temp1 = std::string(PyString_AsString(obj0)); + arg1 = &temp1; + }else { + SWIG_exception(SWIG_TypeError, "string expected"); + } + } + arg4 = obj3; + result = (PyObject *)ob::mbind((std::string const &)*arg1,(ob::MouseContext )arg2,(ob::MouseAction )arg3,arg4); + + resultobj = result; + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_kbind(PyObject *self, PyObject *args) { + PyObject *resultobj; + PyObject *arg1 = (PyObject *) 0 ; + int arg2 ; + PyObject *arg3 = (PyObject *) 0 ; + PyObject *result; + PyObject * obj0 = 0 ; + PyObject * obj2 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"OiO:kbind",&obj0,&arg2,&obj2)) goto fail; + arg1 = obj0; + arg3 = obj2; + result = (PyObject *)ob::kbind(arg1,(ob::KeyContext )arg2,arg3); + + resultobj = result; + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_ebind(PyObject *self, PyObject *args) { + PyObject *resultobj; + int arg1 ; + PyObject *arg2 = (PyObject *) 0 ; + PyObject *result; + PyObject * obj1 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"iO:ebind",&arg1,&obj1)) goto fail; + arg2 = obj1; + result = (PyObject *)ob::ebind((ob::EventAction )arg1,arg2); + + resultobj = result; + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_set_reset_key(PyObject *self, PyObject *args) { + PyObject *resultobj; + std::string *arg1 = 0 ; + std::string temp1 ; + PyObject * obj0 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"O:set_reset_key",&obj0)) goto fail; + { + if (PyString_Check(obj0)) { + temp1 = std::string(PyString_AsString(obj0)); + arg1 = &temp1; + }else { + SWIG_exception(SWIG_TypeError, "string expected"); + } + } + ob::set_reset_key((std::string const &)*arg1); + + Py_INCREF(Py_None); resultobj = Py_None; + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_send_client_msg(PyObject *self, PyObject *args) { + PyObject *resultobj; + Window arg1 ; + int arg2 ; + Window arg3 ; + long arg4 ; + long arg5 = (long) 0 ; + long arg6 = (long) 0 ; + long arg7 = (long) 0 ; + long arg8 = (long) 0 ; + PyObject *result; + PyObject * obj0 = 0 ; + PyObject * obj2 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"OiOl|llll:send_client_msg",&obj0,&arg2,&obj2,&arg4,&arg5,&arg6,&arg7,&arg8)) goto fail; + arg1 = (Window) PyInt_AsLong(obj0); + if (PyErr_Occurred()) SWIG_fail; + arg3 = (Window) PyInt_AsLong(obj2); + if (PyErr_Occurred()) SWIG_fail; + result = (PyObject *)ob::send_client_msg(arg1,arg2,arg3,arg4,arg5,arg6,arg7,arg8); + + resultobj = result; + return resultobj; + fail: + return NULL; +} + + +static PyMethodDef SwigMethods[] = { + { (char *)"Openbox_instance", _wrap_Openbox_instance, METH_VARARGS }, + { (char *)"Cursors_session_set", _wrap_Cursors_session_set, METH_VARARGS }, { (char *)"Cursors_session_get", _wrap_Cursors_session_get, METH_VARARGS }, { (char *)"Cursors_move_set", _wrap_Cursors_move_set, METH_VARARGS }, { (char *)"Cursors_move_get", _wrap_Cursors_move_get, METH_VARARGS }, @@ -2777,11 +4060,17 @@ static PyMethodDef SwigMethods[] = { { (char *)"OBScreen_area", _wrap_OBScreen_area, METH_VARARGS }, { (char *)"OBScreen_style", _wrap_OBScreen_style, METH_VARARGS }, { (char *)"OBScreen_focuswindow", _wrap_OBScreen_focuswindow, METH_VARARGS }, + { (char *)"OBScreen_desktop", _wrap_OBScreen_desktop, METH_VARARGS }, + { (char *)"OBScreen_numDesktops", _wrap_OBScreen_numDesktops, METH_VARARGS }, { (char *)"OBScreen_updateStrut", _wrap_OBScreen_updateStrut, METH_VARARGS }, { (char *)"OBScreen_manageExisting", _wrap_OBScreen_manageExisting, METH_VARARGS }, { (char *)"OBScreen_manageWindow", _wrap_OBScreen_manageWindow, METH_VARARGS }, { (char *)"OBScreen_unmanageWindow", _wrap_OBScreen_unmanageWindow, METH_VARARGS }, { (char *)"OBScreen_restack", _wrap_OBScreen_restack, METH_VARARGS }, + { (char *)"OBScreen_setDesktopName", _wrap_OBScreen_setDesktopName, METH_VARARGS }, + { (char *)"OBScreen_propertyHandler", _wrap_OBScreen_propertyHandler, METH_VARARGS }, + { (char *)"OBScreen_clientMessageHandler", _wrap_OBScreen_clientMessageHandler, METH_VARARGS }, + { (char *)"OBScreen_mapRequestHandler", _wrap_OBScreen_mapRequestHandler, METH_VARARGS }, { (char *)"OBScreen_swigregister", OBScreen_swigregister, METH_VARARGS }, { (char *)"MwmHints_flags_set", _wrap_MwmHints_flags_set, METH_VARARGS }, { (char *)"MwmHints_flags_get", _wrap_MwmHints_flags_get, METH_VARARGS }, @@ -2824,9 +4113,6 @@ static PyMethodDef SwigMethods[] = { { (char *)"OBClient_strut", _wrap_OBClient_strut, METH_VARARGS }, { (char *)"OBClient_move", _wrap_OBClient_move, METH_VARARGS }, { (char *)"OBClient_resize", _wrap_OBClient_resize, METH_VARARGS }, - { (char *)"OBClient_close", _wrap_OBClient_close, METH_VARARGS }, - { (char *)"OBClient_setStackLayer", _wrap_OBClient_setStackLayer, METH_VARARGS }, - { (char *)"OBClient_shade", _wrap_OBClient_shade, METH_VARARGS }, { (char *)"OBClient_focus", _wrap_OBClient_focus, METH_VARARGS }, { (char *)"OBClient_unfocus", _wrap_OBClient_unfocus, METH_VARARGS }, { (char *)"OBClient_focusHandler", _wrap_OBClient_focusHandler, METH_VARARGS }, @@ -2837,12 +4123,66 @@ static PyMethodDef SwigMethods[] = { { (char *)"OBClient_unmapHandler", _wrap_OBClient_unmapHandler, METH_VARARGS }, { (char *)"OBClient_destroyHandler", _wrap_OBClient_destroyHandler, METH_VARARGS }, { (char *)"OBClient_reparentHandler", _wrap_OBClient_reparentHandler, METH_VARARGS }, - { (char *)"OBClient_mapRequestHandler", _wrap_OBClient_mapRequestHandler, METH_VARARGS }, { (char *)"OBClient_swigregister", OBClient_swigregister, METH_VARARGS }, + { (char *)"MouseData_screen_set", _wrap_MouseData_screen_set, METH_VARARGS }, + { (char *)"MouseData_screen_get", _wrap_MouseData_screen_get, METH_VARARGS }, + { (char *)"MouseData_client_set", _wrap_MouseData_client_set, METH_VARARGS }, + { (char *)"MouseData_client_get", _wrap_MouseData_client_get, METH_VARARGS }, + { (char *)"MouseData_time_set", _wrap_MouseData_time_set, METH_VARARGS }, + { (char *)"MouseData_time_get", _wrap_MouseData_time_get, METH_VARARGS }, + { (char *)"MouseData_state_set", _wrap_MouseData_state_set, METH_VARARGS }, + { (char *)"MouseData_state_get", _wrap_MouseData_state_get, METH_VARARGS }, + { (char *)"MouseData_button_set", _wrap_MouseData_button_set, METH_VARARGS }, + { (char *)"MouseData_button_get", _wrap_MouseData_button_get, METH_VARARGS }, + { (char *)"MouseData_context_set", _wrap_MouseData_context_set, METH_VARARGS }, + { (char *)"MouseData_context_get", _wrap_MouseData_context_get, METH_VARARGS }, + { (char *)"MouseData_action_set", _wrap_MouseData_action_set, METH_VARARGS }, + { (char *)"MouseData_action_get", _wrap_MouseData_action_get, METH_VARARGS }, + { (char *)"MouseData_xroot_set", _wrap_MouseData_xroot_set, METH_VARARGS }, + { (char *)"MouseData_xroot_get", _wrap_MouseData_xroot_get, METH_VARARGS }, + { (char *)"MouseData_yroot_set", _wrap_MouseData_yroot_set, METH_VARARGS }, + { (char *)"MouseData_yroot_get", _wrap_MouseData_yroot_get, METH_VARARGS }, + { (char *)"MouseData_pressx_set", _wrap_MouseData_pressx_set, METH_VARARGS }, + { (char *)"MouseData_pressx_get", _wrap_MouseData_pressx_get, METH_VARARGS }, + { (char *)"MouseData_pressy_set", _wrap_MouseData_pressy_set, METH_VARARGS }, + { (char *)"MouseData_pressy_get", _wrap_MouseData_pressy_get, METH_VARARGS }, + { (char *)"MouseData_press_clientx_set", _wrap_MouseData_press_clientx_set, METH_VARARGS }, + { (char *)"MouseData_press_clientx_get", _wrap_MouseData_press_clientx_get, METH_VARARGS }, + { (char *)"MouseData_press_clienty_set", _wrap_MouseData_press_clienty_set, METH_VARARGS }, + { (char *)"MouseData_press_clienty_get", _wrap_MouseData_press_clienty_get, METH_VARARGS }, + { (char *)"MouseData_press_clientwidth_set", _wrap_MouseData_press_clientwidth_set, METH_VARARGS }, + { (char *)"MouseData_press_clientwidth_get", _wrap_MouseData_press_clientwidth_get, METH_VARARGS }, + { (char *)"MouseData_press_clientheight_set", _wrap_MouseData_press_clientheight_set, METH_VARARGS }, + { (char *)"MouseData_press_clientheight_get", _wrap_MouseData_press_clientheight_get, METH_VARARGS }, + { (char *)"new_MouseData", _wrap_new_MouseData, METH_VARARGS }, + { (char *)"MouseData_swigregister", MouseData_swigregister, METH_VARARGS }, + { (char *)"EventData_screen_set", _wrap_EventData_screen_set, METH_VARARGS }, + { (char *)"EventData_screen_get", _wrap_EventData_screen_get, METH_VARARGS }, + { (char *)"EventData_client_set", _wrap_EventData_client_set, METH_VARARGS }, + { (char *)"EventData_client_get", _wrap_EventData_client_get, METH_VARARGS }, + { (char *)"EventData_state_set", _wrap_EventData_state_set, METH_VARARGS }, + { (char *)"EventData_state_get", _wrap_EventData_state_get, METH_VARARGS }, + { (char *)"EventData_action_set", _wrap_EventData_action_set, METH_VARARGS }, + { (char *)"EventData_action_get", _wrap_EventData_action_get, METH_VARARGS }, + { (char *)"new_EventData", _wrap_new_EventData, METH_VARARGS }, + { (char *)"EventData_swigregister", EventData_swigregister, METH_VARARGS }, + { (char *)"KeyData_screen_set", _wrap_KeyData_screen_set, METH_VARARGS }, + { (char *)"KeyData_screen_get", _wrap_KeyData_screen_get, METH_VARARGS }, + { (char *)"KeyData_client_set", _wrap_KeyData_client_set, METH_VARARGS }, + { (char *)"KeyData_client_get", _wrap_KeyData_client_get, METH_VARARGS }, + { (char *)"KeyData_time_set", _wrap_KeyData_time_set, METH_VARARGS }, + { (char *)"KeyData_time_get", _wrap_KeyData_time_get, METH_VARARGS }, + { (char *)"KeyData_state_set", _wrap_KeyData_state_set, METH_VARARGS }, + { (char *)"KeyData_state_get", _wrap_KeyData_state_get, METH_VARARGS }, + { (char *)"KeyData_key_set", _wrap_KeyData_key_set, METH_VARARGS }, + { (char *)"KeyData_key_get", _wrap_KeyData_key_get, METH_VARARGS }, + { (char *)"new_KeyData", _wrap_new_KeyData, METH_VARARGS }, + { (char *)"KeyData_swigregister", KeyData_swigregister, METH_VARARGS }, { (char *)"mbind", _wrap_mbind, METH_VARARGS }, { (char *)"kbind", _wrap_kbind, METH_VARARGS }, { (char *)"ebind", _wrap_ebind, METH_VARARGS }, { (char *)"set_reset_key", _wrap_set_reset_key, METH_VARARGS }, + { (char *)"send_client_msg", _wrap_send_client_msg, METH_VARARGS }, { NULL, NULL } }; @@ -2852,15 +4192,39 @@ static PyMethodDef SwigMethods[] = { static void *_p_ob__OBActionsTo_p_otk__OtkEventHandler(void *x) { return (void *)((otk::OtkEventHandler *) ((ob::OBActions *) x)); } +static void *_p_otk__OtkButtonTo_p_otk__OtkEventHandler(void *x) { + return (void *)((otk::OtkEventHandler *) (otk::OtkWidget *)(otk::OtkFocusWidget *)(otk::OtkFocusLabel *) ((otk::OtkButton *) x)); +} +static void *_p_otk__OtkAppWidgetTo_p_otk__OtkEventHandler(void *x) { + return (void *)((otk::OtkEventHandler *) (otk::OtkWidget *) ((otk::OtkAppWidget *) x)); +} static void *_p_ob__OpenboxTo_p_otk__OtkEventHandler(void *x) { return (void *)((otk::OtkEventHandler *) ((ob::Openbox *) x)); } +static void *_p_ob__OBScreenTo_p_otk__OtkEventHandler(void *x) { + return (void *)((otk::OtkEventHandler *) ((ob::OBScreen *) x)); +} +static void *_p_otk__OtkWidgetTo_p_otk__OtkEventHandler(void *x) { + return (void *)((otk::OtkEventHandler *) ((otk::OtkWidget *) x)); +} +static void *_p_otk__OtkFocusWidgetTo_p_otk__OtkEventHandler(void *x) { + return (void *)((otk::OtkEventHandler *) (otk::OtkWidget *) ((otk::OtkFocusWidget *) x)); +} +static void *_p_otk__OtkFocusLabelTo_p_otk__OtkEventHandler(void *x) { + return (void *)((otk::OtkEventHandler *) (otk::OtkWidget *)(otk::OtkFocusWidget *) ((otk::OtkFocusLabel *) x)); +} static void *_p_ob__OBClientTo_p_otk__OtkEventHandler(void *x) { return (void *)((otk::OtkEventHandler *) ((ob::OBClient *) x)); } +static void *_p_ob__OBScreenTo_p_ob__OBWidget(void *x) { + return (void *)((ob::OBWidget *) ((ob::OBScreen *) x)); +} static void *_p_ob__OBClientTo_p_ob__OBWidget(void *x) { return (void *)((ob::OBWidget *) ((ob::OBClient *) x)); } +static void *_p_otk__OtkApplicationTo_p_otk__OtkEventDispatcher(void *x) { + return (void *)((otk::OtkEventDispatcher *) ((otk::OtkApplication *) x)); +} static void *_p_ob__OpenboxTo_p_otk__OtkEventDispatcher(void *x) { return (void *)((otk::OtkEventDispatcher *) ((ob::Openbox *) x)); } @@ -2871,18 +4235,23 @@ static swig_type_info _swigt__p_ob__OBScreen[] = {{"_p_ob__OBScreen", 0, "ob::OB static swig_type_info _swigt__p_otk__Style[] = {{"_p_otk__Style", 0, "otk::Style *", 0},{"_p_otk__Style"},{0}}; static swig_type_info _swigt__p_ob__OBFrame[] = {{"_p_ob__OBFrame", 0, "ob::OBFrame *", 0},{"_p_ob__OBFrame"},{0}}; static swig_type_info _swigt__p_XReparentEvent[] = {{"_p_XReparentEvent", 0, "XReparentEvent *", 0},{"_p_XReparentEvent"},{0}}; +static swig_type_info _swigt__p_ob__MouseData[] = {{"_p_ob__MouseData", 0, "ob::MouseData *", 0},{"_p_ob__MouseData"},{0}}; static swig_type_info _swigt__p_ob__OBClient[] = {{"_p_ob__OBClient", 0, "ob::OBClient *", 0},{"_p_ob__OBClient"},{0}}; static swig_type_info _swigt__p_ob__Openbox[] = {{"_p_ob__Openbox", 0, "ob::Openbox *", 0},{"_p_ob__Openbox"},{0}}; static swig_type_info _swigt__p_otk__Strut[] = {{"_p_otk__Strut", 0, "otk::Strut *", 0},{"_p_otk__Strut"},{0}}; -static swig_type_info _swigt__p_XConfigureRequestEvent[] = {{"_p_XConfigureRequestEvent", 0, "XConfigureRequestEvent *", 0},{"_p_XConfigureRequestEvent"},{0}}; +static swig_type_info _swigt__p_ob__KeyData[] = {{"_p_ob__KeyData", 0, "ob::KeyData *", 0},{"_p_ob__KeyData"},{0}}; static swig_type_info _swigt__p_XMapRequestEvent[] = {{"_p_XMapRequestEvent", 0, "XMapRequestEvent *", 0},{"_p_XMapRequestEvent"},{0}}; -static swig_type_info _swigt__p_otk__OtkEventHandler[] = {{"_p_otk__OtkEventHandler", 0, "otk::OtkEventHandler *", 0},{"_p_ob__OBActions", _p_ob__OBActionsTo_p_otk__OtkEventHandler},{"_p_otk__OtkEventHandler"},{"_p_ob__Openbox", _p_ob__OpenboxTo_p_otk__OtkEventHandler},{"_p_ob__OBClient", _p_ob__OBClientTo_p_otk__OtkEventHandler},{0}}; +static swig_type_info _swigt__p_XConfigureRequestEvent[] = {{"_p_XConfigureRequestEvent", 0, "XConfigureRequestEvent *", 0},{"_p_XConfigureRequestEvent"},{0}}; +static swig_type_info _swigt__p_otk__Point[] = {{"_p_otk__Point", 0, "otk::Point *", 0},{"_p_otk__Point"},{0}}; +static swig_type_info _swigt__p_otk__OtkEventHandler[] = {{"_p_otk__OtkEventHandler", 0, "otk::OtkEventHandler *", 0},{"_p_ob__OBActions", _p_ob__OBActionsTo_p_otk__OtkEventHandler},{"_p_otk__OtkEventHandler"},{"_p_otk__OtkButton", _p_otk__OtkButtonTo_p_otk__OtkEventHandler},{"_p_otk__OtkAppWidget", _p_otk__OtkAppWidgetTo_p_otk__OtkEventHandler},{"_p_ob__Openbox", _p_ob__OpenboxTo_p_otk__OtkEventHandler},{"_p_ob__OBScreen", _p_ob__OBScreenTo_p_otk__OtkEventHandler},{"_p_otk__OtkWidget", _p_otk__OtkWidgetTo_p_otk__OtkEventHandler},{"_p_otk__OtkFocusWidget", _p_otk__OtkFocusWidgetTo_p_otk__OtkEventHandler},{"_p_otk__OtkFocusLabel", _p_otk__OtkFocusLabelTo_p_otk__OtkEventHandler},{"_p_ob__OBClient", _p_ob__OBClientTo_p_otk__OtkEventHandler},{0}}; +static swig_type_info _swigt__p_std__string[] = {{"_p_std__string", 0, "std::string *", 0},{"_p_std__string"},{0}}; static swig_type_info _swigt__p_otk__Rect[] = {{"_p_otk__Rect", 0, "otk::Rect *", 0},{"_p_otk__Rect"},{0}}; -static swig_type_info _swigt__p_ob__OBWidget[] = {{"_p_ob__OBWidget", 0, "ob::OBWidget *", 0},{"_p_ob__OBWidget"},{"_p_ob__OBClient", _p_ob__OBClientTo_p_ob__OBWidget},{0}}; -static swig_type_info _swigt__p_XFocusChangeEvent[] = {{"_p_XFocusChangeEvent", 0, "XFocusChangeEvent *", 0},{"_p_XFocusChangeEvent"},{0}}; +static swig_type_info _swigt__p_ob__OBWidget[] = {{"_p_ob__OBWidget", 0, "ob::OBWidget *", 0},{"_p_ob__OBWidget"},{"_p_ob__OBScreen", _p_ob__OBScreenTo_p_ob__OBWidget},{"_p_ob__OBClient", _p_ob__OBClientTo_p_ob__OBWidget},{0}}; static swig_type_info _swigt__p_XClientMessageEvent[] = {{"_p_XClientMessageEvent", 0, "XClientMessageEvent *", 0},{"_p_XClientMessageEvent"},{0}}; +static swig_type_info _swigt__p_XFocusChangeEvent[] = {{"_p_XFocusChangeEvent", 0, "XFocusChangeEvent *", 0},{"_p_XFocusChangeEvent"},{0}}; static swig_type_info _swigt__p_otk__OBProperty[] = {{"_p_otk__OBProperty", 0, "otk::OBProperty *", 0},{"_p_otk__OBProperty"},{0}}; -static swig_type_info _swigt__p_otk__OtkEventDispatcher[] = {{"_p_otk__OtkEventDispatcher", 0, "otk::OtkEventDispatcher *", 0},{"_p_otk__OtkEventDispatcher"},{"_p_ob__Openbox", _p_ob__OpenboxTo_p_otk__OtkEventDispatcher},{0}}; +static swig_type_info _swigt__p_ob__EventData[] = {{"_p_ob__EventData", 0, "ob::EventData *", 0},{"_p_ob__EventData"},{0}}; +static swig_type_info _swigt__p_otk__OtkEventDispatcher[] = {{"_p_otk__OtkEventDispatcher", 0, "otk::OtkEventDispatcher *", 0},{"_p_otk__OtkApplication", _p_otk__OtkApplicationTo_p_otk__OtkEventDispatcher},{"_p_otk__OtkEventDispatcher"},{"_p_ob__Openbox", _p_ob__OpenboxTo_p_otk__OtkEventDispatcher},{0}}; static swig_type_info _swigt__p_XPropertyEvent[] = {{"_p_XPropertyEvent", 0, "XPropertyEvent *", 0},{"_p_XPropertyEvent"},{0}}; static swig_type_info _swigt__p_XDestroyWindowEvent[] = {{"_p_XDestroyWindowEvent", 0, "XDestroyWindowEvent *", 0},{"_p_XDestroyWindowEvent"},{0}}; static swig_type_info _swigt__p_otk__BImageControl[] = {{"_p_otk__BImageControl", 0, "otk::BImageControl *", 0},{"_p_otk__BImageControl"},{0}}; @@ -2899,17 +4268,22 @@ _swigt__p_ob__OBScreen, _swigt__p_otk__Style, _swigt__p_ob__OBFrame, _swigt__p_XReparentEvent, +_swigt__p_ob__MouseData, _swigt__p_ob__OBClient, _swigt__p_ob__Openbox, _swigt__p_otk__Strut, -_swigt__p_XConfigureRequestEvent, +_swigt__p_ob__KeyData, _swigt__p_XMapRequestEvent, +_swigt__p_XConfigureRequestEvent, +_swigt__p_otk__Point, _swigt__p_otk__OtkEventHandler, +_swigt__p_std__string, _swigt__p_otk__Rect, _swigt__p_ob__OBWidget, -_swigt__p_XFocusChangeEvent, _swigt__p_XClientMessageEvent, +_swigt__p_XFocusChangeEvent, _swigt__p_otk__OBProperty, +_swigt__p_ob__EventData, _swigt__p_otk__OtkEventDispatcher, _swigt__p_XPropertyEvent, _swigt__p_XDestroyWindowEvent, @@ -3003,352 +4377,14 @@ static swig_const_info swig_const_table[] = { { SWIG_PY_INT, (char *)"NUM_KEY_CONTEXT", (long) ob::NUM_KEY_CONTEXT, 0, 0, 0}, { SWIG_PY_INT, (char *)"EventEnterWindow", (long) ob::EventEnterWindow, 0, 0, 0}, { SWIG_PY_INT, (char *)"EventLeaveWindow", (long) ob::EventLeaveWindow, 0, 0, 0}, +{ SWIG_PY_INT, (char *)"EventPlaceWindow", (long) ob::EventPlaceWindow, 0, 0, 0}, { SWIG_PY_INT, (char *)"EventNewWindow", (long) ob::EventNewWindow, 0, 0, 0}, { SWIG_PY_INT, (char *)"EventCloseWindow", (long) ob::EventCloseWindow, 0, 0, 0}, +{ SWIG_PY_INT, (char *)"EventStartup", (long) ob::EventStartup, 0, 0, 0}, +{ SWIG_PY_INT, (char *)"EventShutdown", (long) ob::EventShutdown, 0, 0, 0}, +{ SWIG_PY_INT, (char *)"EventFocus", (long) ob::EventFocus, 0, 0, 0}, +{ SWIG_PY_INT, (char *)"EventBell", (long) ob::EventBell, 0, 0, 0}, { SWIG_PY_INT, (char *)"NUM_EVENTS", (long) ob::NUM_EVENTS, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"X_PROTOCOL", (long) 11, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"X_PROTOCOL_REVISION", (long) 0, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"None", (long) 0L, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"ParentRelative", (long) 1L, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"CopyFromParent", (long) 0L, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"PointerWindow", (long) 0L, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"InputFocus", (long) 1L, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"PointerRoot", (long) 1L, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"AnyPropertyType", (long) 0L, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"AnyKey", (long) 0L, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"AnyButton", (long) 0L, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"AllTemporary", (long) 0L, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"CurrentTime", (long) 0L, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"NoSymbol", (long) 0L, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"NoEventMask", (long) 0L, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"KeyPressMask", (long) (1L<<0), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"KeyReleaseMask", (long) (1L<<1), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"ButtonPressMask", (long) (1L<<2), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"ButtonReleaseMask", (long) (1L<<3), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"EnterWindowMask", (long) (1L<<4), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"LeaveWindowMask", (long) (1L<<5), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"PointerMotionMask", (long) (1L<<6), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"PointerMotionHintMask", (long) (1L<<7), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"Button1MotionMask", (long) (1L<<8), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"Button2MotionMask", (long) (1L<<9), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"Button3MotionMask", (long) (1L<<10), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"Button4MotionMask", (long) (1L<<11), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"Button5MotionMask", (long) (1L<<12), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"ButtonMotionMask", (long) (1L<<13), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"KeymapStateMask", (long) (1L<<14), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"ExposureMask", (long) (1L<<15), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"VisibilityChangeMask", (long) (1L<<16), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"StructureNotifyMask", (long) (1L<<17), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"ResizeRedirectMask", (long) (1L<<18), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"SubstructureNotifyMask", (long) (1L<<19), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"SubstructureRedirectMask", (long) (1L<<20), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"FocusChangeMask", (long) (1L<<21), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"PropertyChangeMask", (long) (1L<<22), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"ColormapChangeMask", (long) (1L<<23), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"OwnerGrabButtonMask", (long) (1L<<24), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"KeyPress", (long) 2, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"KeyRelease", (long) 3, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"ButtonPress", (long) 4, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"ButtonRelease", (long) 5, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"MotionNotify", (long) 6, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"EnterNotify", (long) 7, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"LeaveNotify", (long) 8, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"FocusIn", (long) 9, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"FocusOut", (long) 10, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"KeymapNotify", (long) 11, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"Expose", (long) 12, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"GraphicsExpose", (long) 13, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"NoExpose", (long) 14, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"VisibilityNotify", (long) 15, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"CreateNotify", (long) 16, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"DestroyNotify", (long) 17, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"UnmapNotify", (long) 18, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"MapNotify", (long) 19, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"MapRequest", (long) 20, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"ReparentNotify", (long) 21, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"ConfigureNotify", (long) 22, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"ConfigureRequest", (long) 23, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"GravityNotify", (long) 24, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"ResizeRequest", (long) 25, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"CirculateNotify", (long) 26, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"CirculateRequest", (long) 27, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"PropertyNotify", (long) 28, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"SelectionClear", (long) 29, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"SelectionRequest", (long) 30, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"SelectionNotify", (long) 31, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"ColormapNotify", (long) 32, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"ClientMessage", (long) 33, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"MappingNotify", (long) 34, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"LASTEvent", (long) 35, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"ShiftMask", (long) (1<<0), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"LockMask", (long) (1<<1), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"ControlMask", (long) (1<<2), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"Mod1Mask", (long) (1<<3), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"Mod2Mask", (long) (1<<4), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"Mod3Mask", (long) (1<<5), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"Mod4Mask", (long) (1<<6), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"Mod5Mask", (long) (1<<7), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"ShiftMapIndex", (long) 0, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"LockMapIndex", (long) 1, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"ControlMapIndex", (long) 2, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"Mod1MapIndex", (long) 3, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"Mod2MapIndex", (long) 4, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"Mod3MapIndex", (long) 5, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"Mod4MapIndex", (long) 6, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"Mod5MapIndex", (long) 7, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"Button1Mask", (long) (1<<8), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"Button2Mask", (long) (1<<9), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"Button3Mask", (long) (1<<10), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"Button4Mask", (long) (1<<11), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"Button5Mask", (long) (1<<12), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"AnyModifier", (long) (1<<15), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"Button1", (long) 1, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"Button2", (long) 2, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"Button3", (long) 3, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"Button4", (long) 4, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"Button5", (long) 5, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"NotifyNormal", (long) 0, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"NotifyGrab", (long) 1, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"NotifyUngrab", (long) 2, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"NotifyWhileGrabbed", (long) 3, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"NotifyHint", (long) 1, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"NotifyAncestor", (long) 0, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"NotifyVirtual", (long) 1, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"NotifyInferior", (long) 2, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"NotifyNonlinear", (long) 3, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"NotifyNonlinearVirtual", (long) 4, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"NotifyPointer", (long) 5, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"NotifyPointerRoot", (long) 6, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"NotifyDetailNone", (long) 7, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"VisibilityUnobscured", (long) 0, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"VisibilityPartiallyObscured", (long) 1, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"VisibilityFullyObscured", (long) 2, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"PlaceOnTop", (long) 0, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"PlaceOnBottom", (long) 1, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"FamilyInternet", (long) 0, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"FamilyDECnet", (long) 1, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"FamilyChaos", (long) 2, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"PropertyNewValue", (long) 0, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"PropertyDelete", (long) 1, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"ColormapUninstalled", (long) 0, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"ColormapInstalled", (long) 1, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"GrabModeSync", (long) 0, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"GrabModeAsync", (long) 1, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"GrabSuccess", (long) 0, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"AlreadyGrabbed", (long) 1, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"GrabInvalidTime", (long) 2, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"GrabNotViewable", (long) 3, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"GrabFrozen", (long) 4, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"AsyncPointer", (long) 0, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"SyncPointer", (long) 1, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"ReplayPointer", (long) 2, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"AsyncKeyboard", (long) 3, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"SyncKeyboard", (long) 4, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"ReplayKeyboard", (long) 5, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"AsyncBoth", (long) 6, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"SyncBoth", (long) 7, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"RevertToParent", (long) 2, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"Success", (long) 0, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"BadRequest", (long) 1, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"BadValue", (long) 2, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"BadWindow", (long) 3, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"BadPixmap", (long) 4, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"BadAtom", (long) 5, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"BadCursor", (long) 6, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"BadFont", (long) 7, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"BadMatch", (long) 8, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"BadDrawable", (long) 9, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"BadAccess", (long) 10, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"BadAlloc", (long) 11, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"BadColor", (long) 12, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"BadGC", (long) 13, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"BadIDChoice", (long) 14, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"BadName", (long) 15, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"BadLength", (long) 16, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"BadImplementation", (long) 17, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"FirstExtensionError", (long) 128, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"LastExtensionError", (long) 255, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"InputOutput", (long) 1, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"InputOnly", (long) 2, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"CWBackPixmap", (long) (1L<<0), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"CWBackPixel", (long) (1L<<1), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"CWBorderPixmap", (long) (1L<<2), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"CWBorderPixel", (long) (1L<<3), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"CWBitGravity", (long) (1L<<4), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"CWWinGravity", (long) (1L<<5), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"CWBackingStore", (long) (1L<<6), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"CWBackingPlanes", (long) (1L<<7), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"CWBackingPixel", (long) (1L<<8), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"CWOverrideRedirect", (long) (1L<<9), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"CWSaveUnder", (long) (1L<<10), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"CWEventMask", (long) (1L<<11), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"CWDontPropagate", (long) (1L<<12), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"CWColormap", (long) (1L<<13), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"CWCursor", (long) (1L<<14), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"CWX", (long) (1<<0), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"CWY", (long) (1<<1), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"CWWidth", (long) (1<<2), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"CWHeight", (long) (1<<3), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"CWBorderWidth", (long) (1<<4), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"CWSibling", (long) (1<<5), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"CWStackMode", (long) (1<<6), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"ForgetGravity", (long) 0, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"NorthWestGravity", (long) 1, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"NorthGravity", (long) 2, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"NorthEastGravity", (long) 3, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"WestGravity", (long) 4, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"CenterGravity", (long) 5, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"EastGravity", (long) 6, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"SouthWestGravity", (long) 7, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"SouthGravity", (long) 8, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"SouthEastGravity", (long) 9, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"StaticGravity", (long) 10, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"UnmapGravity", (long) 0, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"NotUseful", (long) 0, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"WhenMapped", (long) 1, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"Always", (long) 2, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"IsUnmapped", (long) 0, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"IsUnviewable", (long) 1, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"IsViewable", (long) 2, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"SetModeInsert", (long) 0, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"SetModeDelete", (long) 1, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"DestroyAll", (long) 0, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"RetainPermanent", (long) 1, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"RetainTemporary", (long) 2, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"Above", (long) 0, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"Below", (long) 1, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"TopIf", (long) 2, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"BottomIf", (long) 3, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"Opposite", (long) 4, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"RaiseLowest", (long) 0, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"LowerHighest", (long) 1, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"PropModeReplace", (long) 0, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"PropModePrepend", (long) 1, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"PropModeAppend", (long) 2, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"GXclear", (long) 0x0, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"GXand", (long) 0x1, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"GXandReverse", (long) 0x2, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"GXcopy", (long) 0x3, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"GXandInverted", (long) 0x4, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"GXnoop", (long) 0x5, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"GXxor", (long) 0x6, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"GXor", (long) 0x7, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"GXnor", (long) 0x8, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"GXequiv", (long) 0x9, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"GXinvert", (long) 0xa, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"GXorReverse", (long) 0xb, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"GXcopyInverted", (long) 0xc, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"GXorInverted", (long) 0xd, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"GXnand", (long) 0xe, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"GXset", (long) 0xf, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"LineSolid", (long) 0, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"LineOnOffDash", (long) 1, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"LineDoubleDash", (long) 2, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"CapNotLast", (long) 0, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"CapButt", (long) 1, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"CapRound", (long) 2, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"CapProjecting", (long) 3, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"JoinMiter", (long) 0, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"JoinRound", (long) 1, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"JoinBevel", (long) 2, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"FillSolid", (long) 0, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"FillTiled", (long) 1, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"FillStippled", (long) 2, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"FillOpaqueStippled", (long) 3, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"EvenOddRule", (long) 0, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"WindingRule", (long) 1, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"ClipByChildren", (long) 0, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"IncludeInferiors", (long) 1, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"Unsorted", (long) 0, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"YSorted", (long) 1, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"YXSorted", (long) 2, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"YXBanded", (long) 3, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"CoordModeOrigin", (long) 0, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"CoordModePrevious", (long) 1, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"Complex", (long) 0, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"Nonconvex", (long) 1, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"Convex", (long) 2, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"ArcChord", (long) 0, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"ArcPieSlice", (long) 1, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"GCFunction", (long) (1L<<0), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"GCPlaneMask", (long) (1L<<1), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"GCForeground", (long) (1L<<2), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"GCBackground", (long) (1L<<3), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"GCLineWidth", (long) (1L<<4), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"GCLineStyle", (long) (1L<<5), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"GCCapStyle", (long) (1L<<6), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"GCJoinStyle", (long) (1L<<7), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"GCFillStyle", (long) (1L<<8), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"GCFillRule", (long) (1L<<9), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"GCTile", (long) (1L<<10), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"GCStipple", (long) (1L<<11), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"GCTileStipXOrigin", (long) (1L<<12), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"GCTileStipYOrigin", (long) (1L<<13), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"GCFont", (long) (1L<<14), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"GCSubwindowMode", (long) (1L<<15), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"GCGraphicsExposures", (long) (1L<<16), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"GCClipXOrigin", (long) (1L<<17), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"GCClipYOrigin", (long) (1L<<18), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"GCClipMask", (long) (1L<<19), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"GCDashOffset", (long) (1L<<20), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"GCDashList", (long) (1L<<21), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"GCArcMode", (long) (1L<<22), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"GCLastBit", (long) 22, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"FontLeftToRight", (long) 0, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"FontRightToLeft", (long) 1, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"FontChange", (long) 255, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"XYBitmap", (long) 0, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"XYPixmap", (long) 1, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"ZPixmap", (long) 2, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"AllocNone", (long) 0, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"AllocAll", (long) 1, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"DoRed", (long) (1<<0), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"DoGreen", (long) (1<<1), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"DoBlue", (long) (1<<2), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"CursorShape", (long) 0, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"TileShape", (long) 1, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"StippleShape", (long) 2, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"AutoRepeatModeOff", (long) 0, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"AutoRepeatModeOn", (long) 1, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"AutoRepeatModeDefault", (long) 2, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"LedModeOff", (long) 0, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"LedModeOn", (long) 1, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"KBKeyClickPercent", (long) (1L<<0), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"KBBellPercent", (long) (1L<<1), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"KBBellPitch", (long) (1L<<2), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"KBBellDuration", (long) (1L<<3), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"KBLed", (long) (1L<<4), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"KBLedMode", (long) (1L<<5), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"KBKey", (long) (1L<<6), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"KBAutoRepeatMode", (long) (1L<<7), 0, 0, 0}, -{ SWIG_PY_INT, (char *)"MappingSuccess", (long) 0, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"MappingBusy", (long) 1, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"MappingFailed", (long) 2, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"MappingModifier", (long) 0, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"MappingKeyboard", (long) 1, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"MappingPointer", (long) 2, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"DontPreferBlanking", (long) 0, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"PreferBlanking", (long) 1, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"DefaultBlanking", (long) 2, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"DisableScreenSaver", (long) 0, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"DisableScreenInterval", (long) 0, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"DontAllowExposures", (long) 0, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"AllowExposures", (long) 1, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"DefaultExposures", (long) 2, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"ScreenSaverReset", (long) 0, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"ScreenSaverActive", (long) 1, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"HostInsert", (long) 0, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"HostDelete", (long) 1, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"EnableAccess", (long) 1, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"DisableAccess", (long) 0, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"StaticGray", (long) 0, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"GrayScale", (long) 1, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"StaticColor", (long) 2, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"PseudoColor", (long) 3, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"TrueColor", (long) 4, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"DirectColor", (long) 5, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"LSBFirst", (long) 0, 0, 0, 0}, -{ SWIG_PY_INT, (char *)"MSBFirst", (long) 1, 0, 0, 0}, {0}}; #ifdef __cplusplus