diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-01-02 20:36:14 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-01-02 20:36:14 +0000 |
| commit | 66a26917a0631463df7f72c34cbeb39df466918a (patch) | |
| tree | 0ffd823b664d12e81159569076553d705cb7ae2a /src/openbox.i | |
| parent | 745e840547b5443ecfb9b6f0a4f14b0d035d59c2 (diff) | |
new code for bindings/callbacks. much sexier. now passes python classes back to the callbacks, and the storage of the callbacks in the code is much more clear. huzzah.
Diffstat (limited to 'src/openbox.i')
| -rw-r--r-- | src/openbox.i | 114 |
1 files changed, 103 insertions, 11 deletions
diff --git a/src/openbox.i b/src/openbox.i index 0bfad27f..b5e7f09e 100644 --- a/src/openbox.i +++ b/src/openbox.i @@ -10,11 +10,12 @@ #include "openbox.hh" #include "screen.hh" #include "client.hh" -#include "python.hh" #include "bindings.hh" +#include "actions.hh" %} %include stl.i +%include exception.i //%include std_list.i //%template(ClientList) std::list<OBClient*>; @@ -51,15 +52,106 @@ Type_Root }; %} -%ignore ob::python_callback; -%rename(register) ob::python_register; -%rename(preregister) ob::python_preregister; -%rename(unregister) ob::python_unregister; -%rename(unregister_all) ob::python_unregister_all; -%rename(bind) ob::python_bind; -%rename(unbind) ob::python_unbind; -%rename(unbind_all) ob::python_unbind_all; -%rename(set_reset_key) ob::python_set_reset_key; +%rename(register) python_register; +%inline %{ +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); +} +%} %ignore ob::OBScreen::clients; %{ @@ -81,11 +173,11 @@ %import "../otk/eventdispatcher.hh" %import "../otk/eventhandler.hh" %import "widget.hh" +%import "actions.hh" %include "openbox.hh" %include "screen.hh" %include "client.hh" -%include "python.hh" // for Mod1Mask etc %include "X11/X.h" |
