summaryrefslogtreecommitdiff
path: root/src/python.hh
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2002-12-31 06:59:46 +0000
committerDana Jansens <danakj@orodu.net>2002-12-31 06:59:46 +0000
commita6661d587cd043e1894418c091b8dbd4e18a7d55 (patch)
treeb0baafd6222cc77d688ffb3477d48f4fe3ae4bd2 /src/python.hh
parentd7a30f93b517ac76816d0acea92e9c56ad5d6594 (diff)
bindings work. now they have a reset key too.
Diffstat (limited to 'src/python.hh')
-rw-r--r--src/python.hh4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/python.hh b/src/python.hh
index b868c472..9279caef 100644
--- a/src/python.hh
+++ b/src/python.hh
@@ -44,6 +44,8 @@ bool python_bind_key(PyObject *keylist, PyObject *callback);
bool python_unbind_key(PyObject *keylist);
+void python_set_reset_key(const std::string &key);
+
//! Adds a mouse binding
/*!
Bindings do not generate motion events. You can only handle motion events by
@@ -54,7 +56,7 @@ bool python_bind_mouse(const std::string &button, PyObject *callback);
bool python_unbind_mouse(const std::string &button);
-bool python_unbind_all();
+void python_unbind_all();
//! Fire a python callback function
void python_callback(OBActions::ActionType action, Window window,