X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2Fopenbox_wrap.cc;h=146bb2a759f3ecc881e63d63991f3599cb431b1a;hb=9823b821f5623ef2ad182f914e07a97a93f3952e;hp=62b75e649d55bf6e74ec54793472bb63b89b76f3;hpb=bf49e7642027f576716e5742544c282f4396f9ef;p=chaz%2Fopenbox diff --git a/src/openbox_wrap.cc b/src/openbox_wrap.cc index 62b75e64..146bb2a7 100644 --- a/src/openbox_wrap.cc +++ b/src/openbox_wrap.cc @@ -1,6 +1,6 @@ /* ---------------------------------------------------------------------------- * This file was automatically generated by SWIG (http://www.swig.org). - * Version 1.3.17u-20021222-0248 + * Version 1.3.17u-20021226-0459 * * This file is not intended to be easily readable and contains a number of * coding conventions designed to improve portability and efficiency. Do not make @@ -645,31 +645,33 @@ SWIG_InstallConstants(PyObject *d, swig_const_info constants[]) { /* -------- TYPES TABLE (BEGIN) -------- */ -#define SWIGTYPE_p_Window swig_types[0] -#define SWIGTYPE_p_otk__OBTimerQueueManager swig_types[1] +#define SWIGTYPE_p_otk__OBTimerQueueManager swig_types[0] +#define SWIGTYPE_p_ob__OBActions swig_types[1] #define SWIGTYPE_p_ob__Cursors swig_types[2] #define SWIGTYPE_p_ob__OBScreen swig_types[3] #define SWIGTYPE_p_otk__Style swig_types[4] #define SWIGTYPE_p_ob__OBFrame swig_types[5] -#define SWIGTYPE_p_ob__OBClient swig_types[6] -#define SWIGTYPE_p_ob__Openbox swig_types[7] -#define SWIGTYPE_p_Cursor swig_types[8] +#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_XShapeEvent swig_types[10] #define SWIGTYPE_p_XConfigureRequestEvent 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_XClientMessageEvent swig_types[15] -#define SWIGTYPE_p_otk__OBProperty swig_types[16] -#define SWIGTYPE_p_otk__OtkEventDispatcher swig_types[17] -#define SWIGTYPE_p_XPropertyEvent swig_types[18] -#define SWIGTYPE_p_XDestroyWindowEvent swig_types[19] -#define SWIGTYPE_p_otk__BImageControl swig_types[20] -#define SWIGTYPE_p_ob__MwmHints swig_types[21] -#define SWIGTYPE_p_otk__Configuration swig_types[22] -#define SWIGTYPE_p_XUnmapEvent swig_types[23] -static swig_type_info *swig_types[25]; +#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_PyObject swig_types[21] +#define SWIGTYPE_p_otk__BImageControl 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]; /* -------- TYPES TABLE (END) -------- */ @@ -688,6 +690,8 @@ static swig_type_info *swig_types[25]; #include "openbox.hh" #include "screen.hh" #include "client.hh" +#include "bindings.hh" +#include "actions.hh" #define SWIG_MemoryError 1 @@ -770,7 +774,143 @@ static std::string SwigString_AsString(PyObject* o) { #include #include + + ob::Openbox *Openbox_instance() { return ob::Openbox::instance; } + + + enum ActionType { + Action_ButtonPress, + Action_ButtonRelease, + Action_Click, + Action_DoubleClick, + Action_EnterWindow, + Action_LeaveWindow, + Action_KeyPress, + Action_MouseMotion, + Action_NewWindow, + Action_CloseWindow + }; + enum WidgetType { + Type_Frame, + Type_Titlebar, + Type_Handle, + Type_Plate, + Type_Label, + Type_MaximizeButton, + Type_CloseButton, + Type_IconifyButton, + Type_StickyButton, + Type_LeftGrip, + Type_RightGrip, + Type_Client, + Type_Root + }; + + +PyObject * python_register(int action, PyObject *func, bool infront = false) +{ + if (!PyCallable_Check(func)) { + PyErr_SetString(PyExc_TypeError, "Invalid callback function."); + return NULL; + } + + if (!ob::Openbox::instance->actions()->registerCallback( + (ob::OBActions::ActionType)action, func, infront)) { + PyErr_SetString(PyExc_RuntimeError, "Unable to register action callback."); + return NULL; + } + Py_INCREF(Py_None); return Py_None; +} + +PyObject * unregister(int action, PyObject *func) +{ + if (!PyCallable_Check(func)) { + PyErr_SetString(PyExc_TypeError, "Invalid callback function."); + return NULL; + } + + if (!ob::Openbox::instance->actions()->unregisterCallback( + (ob::OBActions::ActionType)action, func)) { + PyErr_SetString(PyExc_RuntimeError, "Unable to unregister action callback."); + return NULL; + } + Py_INCREF(Py_None); return Py_None; +} + +PyObject * unregister_all(int action) +{ + if (!ob::Openbox::instance->actions()->unregisterAllCallbacks( + (ob::OBActions::ActionType)action)) { + PyErr_SetString(PyExc_RuntimeError, + "Unable to unregister action callbacks."); + return NULL; + } + Py_INCREF(Py_None); return Py_None; +} + +PyObject * bind(PyObject *keylist, PyObject *func) +{ + if (!PyList_Check(keylist)) { + PyErr_SetString(PyExc_TypeError, "Invalid keylist. Not a list."); + return NULL; + } + + ob::OBBindings::StringVect vectkeylist; + for (int i = 0, end = PyList_Size(keylist); i < end; ++i) { + PyObject *str = PyList_GetItem(keylist, i); + if (!PyString_Check(str)) { + PyErr_SetString(PyExc_TypeError, + "Invalid keylist. It must contain only strings."); + return NULL; + } + vectkeylist.push_back(PyString_AsString(str)); + } + + if (!ob::Openbox::instance->bindings()->add(vectkeylist, func)) { + PyErr_SetString(PyExc_RuntimeError,"Unable to add binding."); + return NULL; + } + Py_INCREF(Py_None); return Py_None; +} + +PyObject * unbind(PyObject *keylist) +{ + if (!PyList_Check(keylist)) { + PyErr_SetString(PyExc_TypeError, "Invalid keylist. Not a list."); + return NULL; + } + + ob::OBBindings::StringVect vectkeylist; + for (int i = 0, end = PyList_Size(keylist); i < end; ++i) { + PyObject *str = PyList_GetItem(keylist, i); + if (!PyString_Check(str)) { + PyErr_SetString(PyExc_TypeError, + "Invalid keylist. It must contain only strings."); + return NULL; + } + vectkeylist.push_back(PyString_AsString(str)); + } + + ob::Openbox::instance->bindings()->remove(vectkeylist); + Py_INCREF(Py_None); return Py_None; +} + +void unbind_all() +{ + ob::Openbox::instance->bindings()->removeAll(); +} + +void set_reset_key(const std::string &key) +{ + ob::Openbox::instance->bindings()->setResetKey(key); +} + + + #include + ob::OBClient *ob_OBScreen_client(ob::OBScreen *self,int i){ + if (i >= (int)self->clients.size()) + return NULL; ob::OBScreen::ClientList::iterator it = self->clients.begin(); std::advance(it,i); return *it; @@ -778,27 +918,165 @@ ob::OBClient *ob_OBScreen_client(ob::OBScreen *self,int i){ int ob_OBScreen_clientCount(ob::OBScreen const *self){ return (int) self->clients.size(); } +#ifdef __cplusplus +extern "C" { +#endif +static PyObject *_wrap_Openbox_instance(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::Openbox *result; + + if(!PyArg_ParseTuple(args,(char *)":Openbox_instance")) goto fail; + result = (ob::Openbox *)Openbox_instance(); + + resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_ob__Openbox, 0); + return resultobj; + fail: + return NULL; +} - ob::Openbox *Openbox_instance() { return ob::Openbox::instance; } +static PyObject *_wrap_register(PyObject *self, PyObject *args) { + PyObject *resultobj; + int arg1 ; + PyObject *arg2 = (PyObject *) 0 ; + bool arg3 = (bool) false ; + PyObject *result; + PyObject * obj1 = 0 ; + PyObject * obj2 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"iO|O:register",&arg1,&obj1,&obj2)) goto fail; + arg2 = obj1; + if (obj2) { + arg3 = (bool) PyInt_AsLong(obj2); + if (PyErr_Occurred()) SWIG_fail; + } + result = (PyObject *)python_register(arg1,arg2,arg3); + + resultobj = result; + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_unregister(PyObject *self, PyObject *args) { + PyObject *resultobj; + int arg1 ; + PyObject *arg2 = (PyObject *) 0 ; + PyObject *result; + PyObject * obj1 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"iO:unregister",&arg1,&obj1)) goto fail; + arg2 = obj1; + result = (PyObject *)unregister(arg1,arg2); + + resultobj = result; + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_unregister_all(PyObject *self, PyObject *args) { + PyObject *resultobj; + int arg1 ; + PyObject *result; + + if(!PyArg_ParseTuple(args,(char *)"i:unregister_all",&arg1)) goto fail; + result = (PyObject *)unregister_all(arg1); + + resultobj = result; + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_bind(PyObject *self, PyObject *args) { + PyObject *resultobj; + PyObject *arg1 = (PyObject *) 0 ; + PyObject *arg2 = (PyObject *) 0 ; + PyObject *result; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"OO:bind",&obj0,&obj1)) goto fail; + arg1 = obj0; + arg2 = obj1; + result = (PyObject *)bind(arg1,arg2); + + resultobj = result; + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_unbind(PyObject *self, PyObject *args) { + PyObject *resultobj; + PyObject *arg1 = (PyObject *) 0 ; + PyObject *result; + PyObject * obj0 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"O:unbind",&obj0)) goto fail; + arg1 = obj0; + result = (PyObject *)unbind(arg1); + + resultobj = result; + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_unbind_all(PyObject *self, PyObject *args) { + PyObject *resultobj; + + if(!PyArg_ParseTuple(args,(char *)":unbind_all")) goto fail; + unbind_all(); + + Py_INCREF(Py_None); resultobj = Py_None; + 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"); + } + } + set_reset_key((std::string const &)*arg1); + + Py_INCREF(Py_None); resultobj = Py_None; + return resultobj; + fail: + return NULL; +} - #include -#ifdef __cplusplus -extern "C" { -#endif static PyObject *_wrap_Cursors_session_set(PyObject *self, PyObject *args) { PyObject *resultobj; ob::Cursors *arg1 = (ob::Cursors *) 0 ; Cursor arg2 ; - Cursor *argp2 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if(!PyArg_ParseTuple(args,(char *)"OO:Cursors_session_set",&obj0,&obj1)) goto fail; if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__Cursors,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; - if ((SWIG_ConvertPtr(obj1,(void **) &argp2, SWIGTYPE_p_Cursor,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail; - arg2 = *argp2; + arg2 = (Cursor) PyInt_AsLong(obj1); + if (PyErr_Occurred()) SWIG_fail; if (arg1) (arg1)->session = arg2; Py_INCREF(Py_None); resultobj = Py_None; @@ -816,13 +1094,9 @@ static PyObject *_wrap_Cursors_session_get(PyObject *self, PyObject *args) { if(!PyArg_ParseTuple(args,(char *)"O:Cursors_session_get",&obj0)) goto fail; if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__Cursors,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; - result = ((arg1)->session); + result = (Cursor) ((arg1)->session); - { - Cursor * resultptr; - resultptr = new Cursor((Cursor &) result); - resultobj = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_Cursor, 1); - } + resultobj = PyInt_FromLong((long)result); return resultobj; fail: return NULL; @@ -833,14 +1107,13 @@ static PyObject *_wrap_Cursors_move_set(PyObject *self, PyObject *args) { PyObject *resultobj; ob::Cursors *arg1 = (ob::Cursors *) 0 ; Cursor arg2 ; - Cursor *argp2 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if(!PyArg_ParseTuple(args,(char *)"OO:Cursors_move_set",&obj0,&obj1)) goto fail; if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__Cursors,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; - if ((SWIG_ConvertPtr(obj1,(void **) &argp2, SWIGTYPE_p_Cursor,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail; - arg2 = *argp2; + arg2 = (Cursor) PyInt_AsLong(obj1); + if (PyErr_Occurred()) SWIG_fail; if (arg1) (arg1)->move = arg2; Py_INCREF(Py_None); resultobj = Py_None; @@ -858,13 +1131,9 @@ static PyObject *_wrap_Cursors_move_get(PyObject *self, PyObject *args) { if(!PyArg_ParseTuple(args,(char *)"O:Cursors_move_get",&obj0)) goto fail; if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__Cursors,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; - result = ((arg1)->move); + result = (Cursor) ((arg1)->move); - { - Cursor * resultptr; - resultptr = new Cursor((Cursor &) result); - resultobj = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_Cursor, 1); - } + resultobj = PyInt_FromLong((long)result); return resultobj; fail: return NULL; @@ -875,14 +1144,13 @@ static PyObject *_wrap_Cursors_ll_angle_set(PyObject *self, PyObject *args) { PyObject *resultobj; ob::Cursors *arg1 = (ob::Cursors *) 0 ; Cursor arg2 ; - Cursor *argp2 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if(!PyArg_ParseTuple(args,(char *)"OO:Cursors_ll_angle_set",&obj0,&obj1)) goto fail; if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__Cursors,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; - if ((SWIG_ConvertPtr(obj1,(void **) &argp2, SWIGTYPE_p_Cursor,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail; - arg2 = *argp2; + arg2 = (Cursor) PyInt_AsLong(obj1); + if (PyErr_Occurred()) SWIG_fail; if (arg1) (arg1)->ll_angle = arg2; Py_INCREF(Py_None); resultobj = Py_None; @@ -900,13 +1168,9 @@ static PyObject *_wrap_Cursors_ll_angle_get(PyObject *self, PyObject *args) { if(!PyArg_ParseTuple(args,(char *)"O:Cursors_ll_angle_get",&obj0)) goto fail; if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__Cursors,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; - result = ((arg1)->ll_angle); + result = (Cursor) ((arg1)->ll_angle); - { - Cursor * resultptr; - resultptr = new Cursor((Cursor &) result); - resultobj = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_Cursor, 1); - } + resultobj = PyInt_FromLong((long)result); return resultobj; fail: return NULL; @@ -917,14 +1181,13 @@ static PyObject *_wrap_Cursors_lr_angle_set(PyObject *self, PyObject *args) { PyObject *resultobj; ob::Cursors *arg1 = (ob::Cursors *) 0 ; Cursor arg2 ; - Cursor *argp2 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if(!PyArg_ParseTuple(args,(char *)"OO:Cursors_lr_angle_set",&obj0,&obj1)) goto fail; if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__Cursors,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; - if ((SWIG_ConvertPtr(obj1,(void **) &argp2, SWIGTYPE_p_Cursor,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail; - arg2 = *argp2; + arg2 = (Cursor) PyInt_AsLong(obj1); + if (PyErr_Occurred()) SWIG_fail; if (arg1) (arg1)->lr_angle = arg2; Py_INCREF(Py_None); resultobj = Py_None; @@ -942,13 +1205,9 @@ static PyObject *_wrap_Cursors_lr_angle_get(PyObject *self, PyObject *args) { if(!PyArg_ParseTuple(args,(char *)"O:Cursors_lr_angle_get",&obj0)) goto fail; if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__Cursors,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; - result = ((arg1)->lr_angle); + result = (Cursor) ((arg1)->lr_angle); - { - Cursor * resultptr; - resultptr = new Cursor((Cursor &) result); - resultobj = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_Cursor, 1); - } + resultobj = PyInt_FromLong((long)result); return resultobj; fail: return NULL; @@ -959,14 +1218,13 @@ static PyObject *_wrap_Cursors_ul_angle_set(PyObject *self, PyObject *args) { PyObject *resultobj; ob::Cursors *arg1 = (ob::Cursors *) 0 ; Cursor arg2 ; - Cursor *argp2 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if(!PyArg_ParseTuple(args,(char *)"OO:Cursors_ul_angle_set",&obj0,&obj1)) goto fail; if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__Cursors,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; - if ((SWIG_ConvertPtr(obj1,(void **) &argp2, SWIGTYPE_p_Cursor,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail; - arg2 = *argp2; + arg2 = (Cursor) PyInt_AsLong(obj1); + if (PyErr_Occurred()) SWIG_fail; if (arg1) (arg1)->ul_angle = arg2; Py_INCREF(Py_None); resultobj = Py_None; @@ -984,13 +1242,9 @@ static PyObject *_wrap_Cursors_ul_angle_get(PyObject *self, PyObject *args) { if(!PyArg_ParseTuple(args,(char *)"O:Cursors_ul_angle_get",&obj0)) goto fail; if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__Cursors,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; - result = ((arg1)->ul_angle); + result = (Cursor) ((arg1)->ul_angle); - { - Cursor * resultptr; - resultptr = new Cursor((Cursor &) result); - resultobj = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_Cursor, 1); - } + resultobj = PyInt_FromLong((long)result); return resultobj; fail: return NULL; @@ -1001,14 +1255,13 @@ static PyObject *_wrap_Cursors_ur_angle_set(PyObject *self, PyObject *args) { PyObject *resultobj; ob::Cursors *arg1 = (ob::Cursors *) 0 ; Cursor arg2 ; - Cursor *argp2 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if(!PyArg_ParseTuple(args,(char *)"OO:Cursors_ur_angle_set",&obj0,&obj1)) goto fail; if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__Cursors,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; - if ((SWIG_ConvertPtr(obj1,(void **) &argp2, SWIGTYPE_p_Cursor,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail; - arg2 = *argp2; + arg2 = (Cursor) PyInt_AsLong(obj1); + if (PyErr_Occurred()) SWIG_fail; if (arg1) (arg1)->ur_angle = arg2; Py_INCREF(Py_None); resultobj = Py_None; @@ -1026,13 +1279,9 @@ static PyObject *_wrap_Cursors_ur_angle_get(PyObject *self, PyObject *args) { if(!PyArg_ParseTuple(args,(char *)"O:Cursors_ur_angle_get",&obj0)) goto fail; if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__Cursors,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; - result = ((arg1)->ur_angle); + result = (Cursor) ((arg1)->ur_angle); - { - Cursor * resultptr; - resultptr = new Cursor((Cursor &) result); - resultobj = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_Cursor, 1); - } + resultobj = PyInt_FromLong((long)result); return resultobj; fail: return NULL; @@ -1097,6 +1346,40 @@ static PyObject *_wrap_Openbox_property(PyObject *self, PyObject *args) { } +static PyObject *_wrap_Openbox_actions(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::Openbox *arg1 = (ob::Openbox *) 0 ; + ob::OBActions *result; + PyObject * obj0 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"O:Openbox_actions",&obj0)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__Openbox,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + result = (ob::OBActions *)((ob::Openbox const *)arg1)->actions(); + + resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_ob__OBActions, 0); + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_Openbox_bindings(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::Openbox *arg1 = (ob::Openbox *) 0 ; + ob::OBBindings *result; + PyObject * obj0 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"O:Openbox_bindings",&obj0)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__Openbox,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + result = (ob::OBBindings *)((ob::Openbox const *)arg1)->bindings(); + + resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_ob__OBBindings, 0); + return resultobj; + fail: + return NULL; +} + + static PyObject *_wrap_Openbox_screen(PyObject *self, PyObject *args) { PyObject *resultobj; ob::Openbox *arg1 = (ob::Openbox *) 0 ; @@ -1115,6 +1398,23 @@ static PyObject *_wrap_Openbox_screen(PyObject *self, PyObject *args) { } +static PyObject *_wrap_Openbox_screenCount(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::Openbox *arg1 = (ob::Openbox *) 0 ; + int result; + PyObject * obj0 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"O:Openbox_screenCount",&obj0)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__Openbox,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + result = (int)((ob::Openbox const *)arg1)->screenCount(); + + resultobj = PyInt_FromLong((long)result); + return resultobj; + fail: + return NULL; +} + + static PyObject *_wrap_Openbox_cursors(PyObject *self, PyObject *args) { PyObject *resultobj; ob::Openbox *arg1 = (ob::Openbox *) 0 ; @@ -1140,15 +1440,14 @@ static PyObject *_wrap_Openbox_addClient(PyObject *self, PyObject *args) { ob::Openbox *arg1 = (ob::Openbox *) 0 ; Window arg2 ; ob::OBClient *arg3 = (ob::OBClient *) 0 ; - Window *argp2 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; PyObject * obj2 = 0 ; if(!PyArg_ParseTuple(args,(char *)"OOO:Openbox_addClient",&obj0,&obj1,&obj2)) goto fail; if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__Openbox,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; - if ((SWIG_ConvertPtr(obj1,(void **) &argp2, SWIGTYPE_p_Window,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail; - arg2 = *argp2; + arg2 = (Window) PyInt_AsLong(obj1); + if (PyErr_Occurred()) SWIG_fail; if ((SWIG_ConvertPtr(obj2,(void **) &arg3, SWIGTYPE_p_ob__OBClient,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; (arg1)->addClient(arg2,arg3); @@ -1163,14 +1462,13 @@ static PyObject *_wrap_Openbox_removeClient(PyObject *self, PyObject *args) { PyObject *resultobj; ob::Openbox *arg1 = (ob::Openbox *) 0 ; Window arg2 ; - Window *argp2 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if(!PyArg_ParseTuple(args,(char *)"OO:Openbox_removeClient",&obj0,&obj1)) goto fail; if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__Openbox,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; - if ((SWIG_ConvertPtr(obj1,(void **) &argp2, SWIGTYPE_p_Window,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail; - arg2 = *argp2; + arg2 = (Window) PyInt_AsLong(obj1); + if (PyErr_Occurred()) SWIG_fail; (arg1)->removeClient(arg2); Py_INCREF(Py_None); resultobj = Py_None; @@ -1185,14 +1483,13 @@ static PyObject *_wrap_Openbox_findClient(PyObject *self, PyObject *args) { ob::Openbox *arg1 = (ob::Openbox *) 0 ; Window arg2 ; ob::OBClient *result; - Window *argp2 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if(!PyArg_ParseTuple(args,(char *)"OO:Openbox_findClient",&obj0,&obj1)) goto fail; if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__Openbox,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; - if ((SWIG_ConvertPtr(obj1,(void **) &argp2, SWIGTYPE_p_Window,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail; - arg2 = *argp2; + arg2 = (Window) PyInt_AsLong(obj1); + if (PyErr_Occurred()) SWIG_fail; result = (ob::OBClient *)(arg1)->findClient(arg2); resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_ob__OBClient, 0); @@ -1202,6 +1499,59 @@ static PyObject *_wrap_Openbox_findClient(PyObject *self, PyObject *args) { } +static PyObject *_wrap_Openbox_focusedClient(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::Openbox *arg1 = (ob::Openbox *) 0 ; + ob::OBClient *result; + PyObject * obj0 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"O:Openbox_focusedClient",&obj0)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__Openbox,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + result = (ob::OBClient *)(arg1)->focusedClient(); + + resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_ob__OBClient, 0); + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_Openbox_setFocusedClient(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::Openbox *arg1 = (ob::Openbox *) 0 ; + ob::OBClient *arg2 = (ob::OBClient *) 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"OO:Openbox_setFocusedClient",&obj0,&obj1)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__Openbox,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_ob__OBClient,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + (arg1)->setFocusedClient(arg2); + + Py_INCREF(Py_None); resultobj = Py_None; + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_Openbox_focusedScreen(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::Openbox *arg1 = (ob::Openbox *) 0 ; + ob::OBScreen *result; + PyObject * obj0 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"O:Openbox_focusedScreen",&obj0)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__Openbox,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + result = (ob::OBScreen *)(arg1)->focusedScreen(); + + resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_ob__OBScreen, 0); + return resultobj; + fail: + return NULL; +} + + static PyObject *_wrap_Openbox_shutdown(PyObject *self, PyObject *args) { PyObject *resultobj; ob::Openbox *arg1 = (ob::Openbox *) 0 ; @@ -1225,6 +1575,41 @@ static PyObject * Openbox_swigregister(PyObject *self, PyObject *args) { Py_INCREF(obj); return Py_BuildValue((char *)""); } +static PyObject *_wrap_OBScreen_client(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::OBScreen *arg1 = (ob::OBScreen *) 0 ; + int arg2 ; + ob::OBClient *result; + PyObject * obj0 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"Oi:OBScreen_client",&obj0,&arg2)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__OBScreen,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + result = (ob::OBClient *)ob_OBScreen_client(arg1,arg2); + + resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_ob__OBClient, 0); + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_OBScreen_clientCount(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::OBScreen *arg1 = (ob::OBScreen *) 0 ; + int result; + PyObject * obj0 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"O:OBScreen_clientCount",&obj0)) goto fail; + if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__OBScreen,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + result = (int)ob_OBScreen_clientCount((ob::OBScreen const *)arg1); + + resultobj = PyInt_FromLong((long)result); + return resultobj; + fail: + return NULL; +} + + static PyObject *_wrap_OBScreen_managed(PyObject *self, PyObject *args) { PyObject *resultobj; ob::OBScreen *arg1 = (ob::OBScreen *) 0 ; @@ -1296,36 +1681,34 @@ static PyObject *_wrap_OBScreen_style(PyObject *self, PyObject *args) { } -static PyObject *_wrap_OBScreen_addStrut(PyObject *self, PyObject *args) { +static PyObject *_wrap_OBScreen_focuswindow(PyObject *self, PyObject *args) { PyObject *resultobj; ob::OBScreen *arg1 = (ob::OBScreen *) 0 ; - otk::Strut *arg2 = (otk::Strut *) 0 ; + Window result; PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - if(!PyArg_ParseTuple(args,(char *)"OO:OBScreen_addStrut",&obj0,&obj1)) goto fail; + if(!PyArg_ParseTuple(args,(char *)"O:OBScreen_focuswindow",&obj0)) 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_otk__Strut,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; - (arg1)->addStrut(arg2); + result = (Window)((ob::OBScreen const *)arg1)->focuswindow(); - Py_INCREF(Py_None); resultobj = Py_None; + resultobj = PyInt_FromLong((long)result); return resultobj; fail: return NULL; } -static PyObject *_wrap_OBScreen_removeStrut(PyObject *self, PyObject *args) { +static PyObject *_wrap_OBScreen_addStrut(PyObject *self, PyObject *args) { PyObject *resultobj; ob::OBScreen *arg1 = (ob::OBScreen *) 0 ; otk::Strut *arg2 = (otk::Strut *) 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; - if(!PyArg_ParseTuple(args,(char *)"OO:OBScreen_removeStrut",&obj0,&obj1)) goto fail; + if(!PyArg_ParseTuple(args,(char *)"OO:OBScreen_addStrut",&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_otk__Strut,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; - (arg1)->removeStrut(arg2); + (arg1)->addStrut(arg2); Py_INCREF(Py_None); resultobj = Py_None; return resultobj; @@ -1334,20 +1717,17 @@ static PyObject *_wrap_OBScreen_removeStrut(PyObject *self, PyObject *args) { } -static PyObject *_wrap_OBScreen_loadStyle(PyObject *self, PyObject *args) { +static PyObject *_wrap_OBScreen_removeStrut(PyObject *self, PyObject *args) { PyObject *resultobj; ob::OBScreen *arg1 = (ob::OBScreen *) 0 ; - otk::Configuration *arg2 = 0 ; + otk::Strut *arg2 = (otk::Strut *) 0 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; - if(!PyArg_ParseTuple(args,(char *)"OO:OBScreen_loadStyle",&obj0,&obj1)) goto fail; + if(!PyArg_ParseTuple(args,(char *)"OO:OBScreen_removeStrut",&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_otk__Configuration,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; - if (arg2 == NULL) { - PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail; - } - (arg1)->loadStyle((otk::Configuration const &)*arg2); + if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_otk__Strut,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + (arg1)->removeStrut(arg2); Py_INCREF(Py_None); resultobj = Py_None; return resultobj; @@ -1376,14 +1756,13 @@ static PyObject *_wrap_OBScreen_manageWindow(PyObject *self, PyObject *args) { PyObject *resultobj; ob::OBScreen *arg1 = (ob::OBScreen *) 0 ; Window arg2 ; - Window *argp2 ; PyObject * obj0 = 0 ; PyObject * obj1 = 0 ; if(!PyArg_ParseTuple(args,(char *)"OO:OBScreen_manageWindow",&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 **) &argp2, SWIGTYPE_p_Window,SWIG_POINTER_EXCEPTION) == -1)) SWIG_fail; - arg2 = *argp2; + arg2 = (Window) PyInt_AsLong(obj1); + if (PyErr_Occurred()) SWIG_fail; (arg1)->manageWindow(arg2); Py_INCREF(Py_None); resultobj = Py_None; @@ -1412,41 +1791,6 @@ static PyObject *_wrap_OBScreen_unmanageWindow(PyObject *self, PyObject *args) { } -static PyObject *_wrap_OBScreen_client(PyObject *self, PyObject *args) { - PyObject *resultobj; - ob::OBScreen *arg1 = (ob::OBScreen *) 0 ; - int arg2 ; - ob::OBClient *result; - PyObject * obj0 = 0 ; - - if(!PyArg_ParseTuple(args,(char *)"Oi:OBScreen_client",&obj0,&arg2)) goto fail; - if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__OBScreen,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; - result = (ob::OBClient *)ob_OBScreen_client(arg1,arg2); - - resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_ob__OBClient, 0); - return resultobj; - fail: - return NULL; -} - - -static PyObject *_wrap_OBScreen_clientCount(PyObject *self, PyObject *args) { - PyObject *resultobj; - ob::OBScreen *arg1 = (ob::OBScreen *) 0 ; - int result; - PyObject * obj0 = 0 ; - - if(!PyArg_ParseTuple(args,(char *)"O:OBScreen_clientCount",&obj0)) goto fail; - if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__OBScreen,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; - result = (int)ob_OBScreen_clientCount((ob::OBScreen const *)arg1); - - resultobj = PyInt_FromLong((long)result); - return resultobj; - fail: - return NULL; -} - - static PyObject * OBScreen_swigregister(PyObject *self, PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL; @@ -1667,13 +2011,9 @@ static PyObject *_wrap_OBClient_window(PyObject *self, PyObject *args) { if(!PyArg_ParseTuple(args,(char *)"O:OBClient_window",&obj0)) goto fail; if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_ob__OBClient,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; - result = ((ob::OBClient const *)arg1)->window(); + result = (Window)((ob::OBClient const *)arg1)->window(); - { - Window * resultptr; - resultptr = new Window((Window &) result); - resultobj = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_Window, 1); - } + resultobj = PyInt_FromLong((long)result); return resultobj; fail: return NULL; @@ -2134,6 +2474,99 @@ 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_focus(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::OBClient *arg1 = (ob::OBClient *) 0 ; + bool result; + PyObject * obj0 = 0 ; + + 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(); + + resultobj = PyInt_FromLong((long)result); + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_OBClient_unfocus(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::OBClient *arg1 = (ob::OBClient *) 0 ; + PyObject * obj0 = 0 ; + + 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(); + + Py_INCREF(Py_None); resultobj = Py_None; + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_OBClient_focusHandler(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::OBClient *arg1 = (ob::OBClient *) 0 ; + XFocusChangeEvent *arg2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"OO:OBClient_focusHandler",&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_XFocusChangeEvent,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + if (arg2 == NULL) { + PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail; + } + (arg1)->focusHandler((XFocusChangeEvent const &)*arg2); + + Py_INCREF(Py_None); resultobj = Py_None; + return resultobj; + fail: + return NULL; +} + + +static PyObject *_wrap_OBClient_unfocusHandler(PyObject *self, PyObject *args) { + PyObject *resultobj; + ob::OBClient *arg1 = (ob::OBClient *) 0 ; + XFocusChangeEvent *arg2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; + + if(!PyArg_ParseTuple(args,(char *)"OO:OBClient_unfocusHandler",&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_XFocusChangeEvent,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + if (arg2 == NULL) { + PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail; + } + (arg1)->unfocusHandler((XFocusChangeEvent const &)*arg2); + + Py_INCREF(Py_None); resultobj = Py_None; + return resultobj; + fail: + return NULL; +} + + static PyObject *_wrap_OBClient_propertyHandler(PyObject *self, PyObject *args) { PyObject *resultobj; ob::OBClient *arg1 = (ob::OBClient *) 0 ; @@ -2266,28 +2699,44 @@ static PyObject *_wrap_OBClient_destroyHandler(PyObject *self, PyObject *args) { } -static PyObject * OBClient_swigregister(PyObject *self, PyObject *args) { - PyObject *obj; - if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL; - SWIG_TypeClientData(SWIGTYPE_p_ob__OBClient, obj); - Py_INCREF(obj); - return Py_BuildValue((char *)""); -} -static PyObject *_wrap_Openbox_instance(PyObject *self, PyObject *args) { +static PyObject *_wrap_OBClient_reparentHandler(PyObject *self, PyObject *args) { PyObject *resultobj; - ob::Openbox *result; + ob::OBClient *arg1 = (ob::OBClient *) 0 ; + XReparentEvent *arg2 = 0 ; + PyObject * obj0 = 0 ; + PyObject * obj1 = 0 ; - if(!PyArg_ParseTuple(args,(char *)":Openbox_instance")) goto fail; - result = (ob::Openbox *)Openbox_instance(); + if(!PyArg_ParseTuple(args,(char *)"OO:OBClient_reparentHandler",&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_XReparentEvent,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail; + if (arg2 == NULL) { + PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail; + } + (arg1)->reparentHandler((XReparentEvent const &)*arg2); - resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_ob__Openbox, 0); + 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; + SWIG_TypeClientData(SWIGTYPE_p_ob__OBClient, obj); + Py_INCREF(obj); + return Py_BuildValue((char *)""); +} static PyMethodDef SwigMethods[] = { + { (char *)"Openbox_instance", _wrap_Openbox_instance, METH_VARARGS }, + { (char *)"register", _wrap_register, METH_VARARGS }, + { (char *)"unregister", _wrap_unregister, METH_VARARGS }, + { (char *)"unregister_all", _wrap_unregister_all, METH_VARARGS }, + { (char *)"bind", _wrap_bind, METH_VARARGS }, + { (char *)"unbind", _wrap_unbind, METH_VARARGS }, + { (char *)"unbind_all", _wrap_unbind_all, METH_VARARGS }, + { (char *)"set_reset_key", _wrap_set_reset_key, 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 }, @@ -2304,25 +2753,31 @@ static PyMethodDef SwigMethods[] = { { (char *)"Openbox_state", _wrap_Openbox_state, METH_VARARGS }, { (char *)"Openbox_timerManager", _wrap_Openbox_timerManager, METH_VARARGS }, { (char *)"Openbox_property", _wrap_Openbox_property, METH_VARARGS }, + { (char *)"Openbox_actions", _wrap_Openbox_actions, METH_VARARGS }, + { (char *)"Openbox_bindings", _wrap_Openbox_bindings, METH_VARARGS }, { (char *)"Openbox_screen", _wrap_Openbox_screen, METH_VARARGS }, + { (char *)"Openbox_screenCount", _wrap_Openbox_screenCount, METH_VARARGS }, { (char *)"Openbox_cursors", _wrap_Openbox_cursors, METH_VARARGS }, { (char *)"Openbox_addClient", _wrap_Openbox_addClient, METH_VARARGS }, { (char *)"Openbox_removeClient", _wrap_Openbox_removeClient, METH_VARARGS }, { (char *)"Openbox_findClient", _wrap_Openbox_findClient, METH_VARARGS }, + { (char *)"Openbox_focusedClient", _wrap_Openbox_focusedClient, METH_VARARGS }, + { (char *)"Openbox_setFocusedClient", _wrap_Openbox_setFocusedClient, METH_VARARGS }, + { (char *)"Openbox_focusedScreen", _wrap_Openbox_focusedScreen, METH_VARARGS }, { (char *)"Openbox_shutdown", _wrap_Openbox_shutdown, METH_VARARGS }, { (char *)"Openbox_swigregister", Openbox_swigregister, METH_VARARGS }, + { (char *)"OBScreen_client", _wrap_OBScreen_client, METH_VARARGS }, + { (char *)"OBScreen_clientCount", _wrap_OBScreen_clientCount, METH_VARARGS }, { (char *)"OBScreen_managed", _wrap_OBScreen_managed, METH_VARARGS }, { (char *)"OBScreen_imageControl", _wrap_OBScreen_imageControl, METH_VARARGS }, { (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_addStrut", _wrap_OBScreen_addStrut, METH_VARARGS }, { (char *)"OBScreen_removeStrut", _wrap_OBScreen_removeStrut, METH_VARARGS }, - { (char *)"OBScreen_loadStyle", _wrap_OBScreen_loadStyle, 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_client", _wrap_OBScreen_client, METH_VARARGS }, - { (char *)"OBScreen_clientCount", _wrap_OBScreen_clientCount, 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 }, @@ -2362,20 +2817,28 @@ static PyMethodDef SwigMethods[] = { { (char *)"OBClient_area", _wrap_OBClient_area, 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_focus", _wrap_OBClient_focus, METH_VARARGS }, + { (char *)"OBClient_unfocus", _wrap_OBClient_unfocus, METH_VARARGS }, + { (char *)"OBClient_focusHandler", _wrap_OBClient_focusHandler, METH_VARARGS }, + { (char *)"OBClient_unfocusHandler", _wrap_OBClient_unfocusHandler, METH_VARARGS }, { (char *)"OBClient_propertyHandler", _wrap_OBClient_propertyHandler, METH_VARARGS }, { (char *)"OBClient_clientMessageHandler", _wrap_OBClient_clientMessageHandler, METH_VARARGS }, { (char *)"OBClient_shapeHandler", _wrap_OBClient_shapeHandler, METH_VARARGS }, { (char *)"OBClient_configureRequestHandler", _wrap_OBClient_configureRequestHandler, METH_VARARGS }, { (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_swigregister", OBClient_swigregister, METH_VARARGS }, - { (char *)"Openbox_instance", _wrap_Openbox_instance, METH_VARARGS }, { NULL, NULL } }; /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */ +static void *_p_ob__OBActionsTo_p_otk__OtkEventHandler(void *x) { + return (void *)((otk::OtkEventHandler *) ((ob::OBActions *) x)); +} static void *_p_ob__OpenboxTo_p_otk__OtkEventHandler(void *x) { return (void *)((otk::OtkEventHandler *) ((ob::Openbox *) x)); } @@ -2388,55 +2851,59 @@ static void *_p_ob__OBClientTo_p_ob__OBWidget(void *x) { static void *_p_ob__OpenboxTo_p_otk__OtkEventDispatcher(void *x) { return (void *)((otk::OtkEventDispatcher *) ((ob::Openbox *) x)); } -static swig_type_info _swigt__p_Window[] = {{"_p_Window", 0, "Window *", 0},{"_p_Window"},{0}}; static swig_type_info _swigt__p_otk__OBTimerQueueManager[] = {{"_p_otk__OBTimerQueueManager", 0, "otk::OBTimerQueueManager *", 0},{"_p_otk__OBTimerQueueManager"},{0}}; +static swig_type_info _swigt__p_ob__OBActions[] = {{"_p_ob__OBActions", 0, "ob::OBActions *", 0},{"_p_ob__OBActions"},{0}}; static swig_type_info _swigt__p_ob__Cursors[] = {{"_p_ob__Cursors", 0, "ob::Cursors *", 0},{"_p_ob__Cursors"},{0}}; static swig_type_info _swigt__p_ob__OBScreen[] = {{"_p_ob__OBScreen", 0, "ob::OBScreen *", 0},{"_p_ob__OBScreen"},{0}}; 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__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_Cursor[] = {{"_p_Cursor", 0, "Cursor *", 0},{"_p_Cursor"},{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_XShapeEvent[] = {{"_p_XShapeEvent", 0, "XShapeEvent *", 0},{"_p_XShapeEvent"},{0}}; static swig_type_info _swigt__p_XConfigureRequestEvent[] = {{"_p_XConfigureRequestEvent", 0, "XConfigureRequestEvent *", 0},{"_p_XConfigureRequestEvent"},{0}}; -static swig_type_info _swigt__p_otk__OtkEventHandler[] = {{"_p_otk__OtkEventHandler", 0, "otk::OtkEventHandler *", 0},{"_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_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_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_XClientMessageEvent[] = {{"_p_XClientMessageEvent", 0, "XClientMessageEvent *", 0},{"_p_XClientMessageEvent"},{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_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_PyObject[] = {{"_p_PyObject", 0, "PyObject *", 0},{"_p_PyObject"},{0}}; static swig_type_info _swigt__p_otk__BImageControl[] = {{"_p_otk__BImageControl", 0, "otk::BImageControl *", 0},{"_p_otk__BImageControl"},{0}}; +static swig_type_info _swigt__p_ob__OBBindings[] = {{"_p_ob__OBBindings", 0, "ob::OBBindings *", 0},{"_p_ob__OBBindings"},{0}}; static swig_type_info _swigt__p_ob__MwmHints[] = {{"_p_ob__MwmHints", 0, "ob::MwmHints *", 0},{"_p_ob__MwmHints"},{0}}; -static swig_type_info _swigt__p_otk__Configuration[] = {{"_p_otk__Configuration", 0, "otk::Configuration *", 0},{"_p_otk__Configuration"},{0}}; static swig_type_info _swigt__p_XUnmapEvent[] = {{"_p_XUnmapEvent", 0, "XUnmapEvent *", 0},{"_p_XUnmapEvent"},{0}}; static swig_type_info *swig_types_initial[] = { -_swigt__p_Window, _swigt__p_otk__OBTimerQueueManager, +_swigt__p_ob__OBActions, _swigt__p_ob__Cursors, _swigt__p_ob__OBScreen, _swigt__p_otk__Style, _swigt__p_ob__OBFrame, +_swigt__p_XReparentEvent, _swigt__p_ob__OBClient, _swigt__p_ob__Openbox, -_swigt__p_Cursor, _swigt__p_otk__Strut, _swigt__p_XShapeEvent, _swigt__p_XConfigureRequestEvent, _swigt__p_otk__OtkEventHandler, _swigt__p_otk__Rect, _swigt__p_ob__OBWidget, +_swigt__p_XFocusChangeEvent, _swigt__p_XClientMessageEvent, _swigt__p_otk__OBProperty, _swigt__p_otk__OtkEventDispatcher, _swigt__p_XPropertyEvent, _swigt__p_XDestroyWindowEvent, +_swigt__p_PyObject, _swigt__p_otk__BImageControl, +_swigt__p_ob__OBBindings, _swigt__p_ob__MwmHints, -_swigt__p_otk__Configuration, _swigt__p_XUnmapEvent, 0 }; @@ -2445,6 +2912,29 @@ _swigt__p_XUnmapEvent, /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */ static swig_const_info swig_const_table[] = { +{ SWIG_PY_INT, (char *)"Action_ButtonPress", (long) Action_ButtonPress, 0, 0, 0}, +{ SWIG_PY_INT, (char *)"Action_ButtonRelease", (long) Action_ButtonRelease, 0, 0, 0}, +{ SWIG_PY_INT, (char *)"Action_Click", (long) Action_Click, 0, 0, 0}, +{ SWIG_PY_INT, (char *)"Action_DoubleClick", (long) Action_DoubleClick, 0, 0, 0}, +{ SWIG_PY_INT, (char *)"Action_EnterWindow", (long) Action_EnterWindow, 0, 0, 0}, +{ SWIG_PY_INT, (char *)"Action_LeaveWindow", (long) Action_LeaveWindow, 0, 0, 0}, +{ SWIG_PY_INT, (char *)"Action_KeyPress", (long) Action_KeyPress, 0, 0, 0}, +{ SWIG_PY_INT, (char *)"Action_MouseMotion", (long) Action_MouseMotion, 0, 0, 0}, +{ SWIG_PY_INT, (char *)"Action_NewWindow", (long) Action_NewWindow, 0, 0, 0}, +{ SWIG_PY_INT, (char *)"Action_CloseWindow", (long) Action_CloseWindow, 0, 0, 0}, +{ SWIG_PY_INT, (char *)"Type_Frame", (long) Type_Frame, 0, 0, 0}, +{ SWIG_PY_INT, (char *)"Type_Titlebar", (long) Type_Titlebar, 0, 0, 0}, +{ SWIG_PY_INT, (char *)"Type_Handle", (long) Type_Handle, 0, 0, 0}, +{ SWIG_PY_INT, (char *)"Type_Plate", (long) Type_Plate, 0, 0, 0}, +{ SWIG_PY_INT, (char *)"Type_Label", (long) Type_Label, 0, 0, 0}, +{ SWIG_PY_INT, (char *)"Type_MaximizeButton", (long) Type_MaximizeButton, 0, 0, 0}, +{ SWIG_PY_INT, (char *)"Type_CloseButton", (long) Type_CloseButton, 0, 0, 0}, +{ SWIG_PY_INT, (char *)"Type_IconifyButton", (long) Type_IconifyButton, 0, 0, 0}, +{ SWIG_PY_INT, (char *)"Type_StickyButton", (long) Type_StickyButton, 0, 0, 0}, +{ SWIG_PY_INT, (char *)"Type_LeftGrip", (long) Type_LeftGrip, 0, 0, 0}, +{ SWIG_PY_INT, (char *)"Type_RightGrip", (long) Type_RightGrip, 0, 0, 0}, +{ SWIG_PY_INT, (char *)"Type_Client", (long) Type_Client, 0, 0, 0}, +{ SWIG_PY_INT, (char *)"Type_Root", (long) Type_Root, 0, 0, 0}, { SWIG_PY_INT, (char *)"Openbox_State_Starting", (long) ob::Openbox::State_Starting, 0, 0, 0}, { SWIG_PY_INT, (char *)"Openbox_State_Normal", (long) ob::Openbox::State_Normal, 0, 0, 0}, { SWIG_PY_INT, (char *)"Openbox_State_Exiting", (long) ob::Openbox::State_Exiting, 0, 0, 0}, @@ -2492,6 +2982,349 @@ static swig_const_info swig_const_table[] = { { SWIG_PY_INT, (char *)"OBClient_State_Toggle", (long) ob::OBClient::State_Toggle, 0, 0, 0}, { SWIG_PY_INT, (char *)"OBClient_event_mask", (long) ob::OBClient::event_mask, 0, 0, 0}, { SWIG_PY_INT, (char *)"OBClient_no_propagate_mask", (long) ob::OBClient::no_propagate_mask, 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