2002-12-25 02:19:49 +00:00
|
|
|
// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
|
|
|
|
|
|
|
|
#include "python.hh"
|
2002-12-30 06:31:45 +00:00
|
|
|
#include "openbox.hh"
|
2003-01-02 20:36:14 +00:00
|
|
|
#include "actions.hh"
|
|
|
|
#include "python.hh"
|
|
|
|
#include "bindings.hh"
|
2002-12-31 06:59:46 +00:00
|
|
|
#include "otk/display.hh"
|
2002-12-25 02:19:49 +00:00
|
|
|
|
2002-12-31 19:15:24 +00:00
|
|
|
extern "C" {
|
|
|
|
// The initializer in openbox_wrap.cc
|
|
|
|
extern void init_openbox(void);
|
|
|
|
// The initializer in otk_wrap.cc
|
|
|
|
extern void init_otk(void);
|
|
|
|
}
|
|
|
|
|
2002-12-25 02:19:49 +00:00
|
|
|
namespace ob {
|
|
|
|
|
2003-01-02 20:36:14 +00:00
|
|
|
static PyObject *obdict = NULL;
|
|
|
|
|
|
|
|
// ************************************************************* //
|
|
|
|
// Define some custom types which are passed to python callbacks //
|
|
|
|
// ************************************************************* //
|
|
|
|
|
2003-01-03 05:26:04 +00:00
|
|
|
static void dealloc(PyObject *self)
|
2003-01-02 20:36:14 +00:00
|
|
|
{
|
2003-01-03 05:26:04 +00:00
|
|
|
PyObject_Del(self);
|
2002-12-31 19:15:24 +00:00
|
|
|
}
|
|
|
|
|
2003-01-03 05:26:04 +00:00
|
|
|
PyObject *MotionData_window(MotionData *self, PyObject *args)
|
2002-12-25 02:19:49 +00:00
|
|
|
{
|
2003-01-02 20:36:14 +00:00
|
|
|
if(!PyArg_ParseTuple(args,":window")) return NULL;
|
|
|
|
return PyLong_FromLong(self->window);
|
2002-12-25 02:19:49 +00:00
|
|
|
}
|
|
|
|
|
2003-01-03 05:26:04 +00:00
|
|
|
PyObject *MotionData_context(MotionData *self, PyObject *args)
|
2002-12-25 22:02:34 +00:00
|
|
|
{
|
2003-01-03 02:48:25 +00:00
|
|
|
if(!PyArg_ParseTuple(args,":context")) return NULL;
|
|
|
|
return PyLong_FromLong((int)self->context);
|
2002-12-25 22:02:34 +00:00
|
|
|
}
|
|
|
|
|
2003-01-03 05:26:04 +00:00
|
|
|
PyObject *MotionData_action(MotionData *self, PyObject *args)
|
|
|
|
{
|
|
|
|
if(!PyArg_ParseTuple(args,":action")) return NULL;
|
|
|
|
return PyLong_FromLong((int)self->action);
|
|
|
|
}
|
|
|
|
|
|
|
|
PyObject *MotionData_modifiers(MotionData *self, PyObject *args)
|
2002-12-25 02:19:49 +00:00
|
|
|
{
|
2003-01-02 20:36:14 +00:00
|
|
|
if(!PyArg_ParseTuple(args,":modifiers")) return NULL;
|
|
|
|
return PyLong_FromUnsignedLong(self->state);
|
2002-12-25 02:19:49 +00:00
|
|
|
}
|
|
|
|
|
2003-01-03 05:26:04 +00:00
|
|
|
PyObject *MotionData_button(MotionData *self, PyObject *args)
|
2002-12-27 08:39:53 +00:00
|
|
|
{
|
2003-01-02 20:36:14 +00:00
|
|
|
if(!PyArg_ParseTuple(args,":button")) return NULL;
|
|
|
|
int b = 0;
|
|
|
|
switch (self->button) {
|
|
|
|
case Button5: b++;
|
|
|
|
case Button4: b++;
|
|
|
|
case Button3: b++;
|
|
|
|
case Button2: b++;
|
|
|
|
case Button1: b++;
|
|
|
|
default: ;
|
2002-12-27 08:39:53 +00:00
|
|
|
}
|
2003-01-02 20:36:14 +00:00
|
|
|
return PyLong_FromLong(b);
|
2002-12-27 08:39:53 +00:00
|
|
|
}
|
|
|
|
|
2003-01-03 05:26:04 +00:00
|
|
|
PyObject *MotionData_xroot(MotionData *self, PyObject *args)
|
2002-12-25 02:19:49 +00:00
|
|
|
{
|
2003-01-02 20:36:14 +00:00
|
|
|
if(!PyArg_ParseTuple(args,":xroot")) return NULL;
|
|
|
|
return PyLong_FromLong(self->xroot);
|
|
|
|
}
|
2002-12-25 02:19:49 +00:00
|
|
|
|
2003-01-03 05:26:04 +00:00
|
|
|
PyObject *MotionData_yroot(MotionData *self, PyObject *args)
|
2003-01-02 20:36:14 +00:00
|
|
|
{
|
|
|
|
if(!PyArg_ParseTuple(args,":yroot")) return NULL;
|
|
|
|
return PyLong_FromLong(self->yroot);
|
2002-12-25 02:19:49 +00:00
|
|
|
}
|
|
|
|
|
2003-01-03 05:26:04 +00:00
|
|
|
PyObject *MotionData_pressx(MotionData *self, PyObject *args)
|
|
|
|
{
|
|
|
|
if(!PyArg_ParseTuple(args,":pressx")) return NULL;
|
|
|
|
return PyLong_FromLong(self->pressx);
|
|
|
|
}
|
|
|
|
|
|
|
|
PyObject *MotionData_pressy(MotionData *self, PyObject *args)
|
|
|
|
{
|
|
|
|
if(!PyArg_ParseTuple(args,":pressy")) return NULL;
|
|
|
|
return PyLong_FromLong(self->pressy);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
PyObject *MotionData_press_clientx(MotionData *self, PyObject *args)
|
|
|
|
{
|
|
|
|
if(!PyArg_ParseTuple(args,":press_clientx")) return NULL;
|
|
|
|
return PyLong_FromLong(self->press_clientx);
|
|
|
|
}
|
|
|
|
|
|
|
|
PyObject *MotionData_press_clienty(MotionData *self, PyObject *args)
|
|
|
|
{
|
|
|
|
if(!PyArg_ParseTuple(args,":press_clienty")) return NULL;
|
|
|
|
return PyLong_FromLong(self->press_clienty);
|
|
|
|
}
|
|
|
|
|
|
|
|
PyObject *MotionData_press_clientwidth(MotionData *self, PyObject *args)
|
|
|
|
{
|
|
|
|
if(!PyArg_ParseTuple(args,":press_clientwidth")) return NULL;
|
|
|
|
return PyLong_FromLong(self->press_clientwidth);
|
|
|
|
}
|
|
|
|
|
|
|
|
PyObject *MotionData_press_clientheight(MotionData *self, PyObject *args)
|
|
|
|
{
|
|
|
|
if(!PyArg_ParseTuple(args,":press_clientheight")) return NULL;
|
|
|
|
return PyLong_FromLong(self->press_clientheight);
|
|
|
|
}
|
|
|
|
|
|
|
|
PyObject *MotionData_time(MotionData *self, PyObject *args)
|
2003-01-02 20:36:14 +00:00
|
|
|
{
|
|
|
|
if(!PyArg_ParseTuple(args,":time")) return NULL;
|
|
|
|
return PyLong_FromLong(self->time);
|
|
|
|
}
|
2002-12-30 06:31:45 +00:00
|
|
|
|
2003-01-03 05:26:04 +00:00
|
|
|
static PyMethodDef MotionData_methods[] = {
|
|
|
|
{"action", (PyCFunction)MotionData_action, METH_VARARGS,
|
2003-01-02 20:36:14 +00:00
|
|
|
"Return the action being executed."},
|
2003-01-03 05:26:04 +00:00
|
|
|
{"window", (PyCFunction)MotionData_window, METH_VARARGS,
|
2003-01-02 20:36:14 +00:00
|
|
|
"Return the client window id."},
|
2003-01-03 05:26:04 +00:00
|
|
|
{"context", (PyCFunction)MotionData_context, METH_VARARGS,
|
2003-01-03 02:48:25 +00:00
|
|
|
"Return the context that the action is occuring in."},
|
2003-01-03 05:26:04 +00:00
|
|
|
{"modifiers", (PyCFunction)MotionData_modifiers, METH_VARARGS,
|
2003-01-02 20:36:14 +00:00
|
|
|
"Return the modifier keys state."},
|
2003-01-03 05:26:04 +00:00
|
|
|
{"button", (PyCFunction)MotionData_button, METH_VARARGS,
|
2003-01-02 20:36:14 +00:00
|
|
|
"Return the number of the pressed button (1-5)."},
|
2003-01-03 05:26:04 +00:00
|
|
|
{"xroot", (PyCFunction)MotionData_xroot, METH_VARARGS,
|
2003-01-02 20:36:14 +00:00
|
|
|
"Return the X-position of the mouse cursor on the root window."},
|
2003-01-03 05:26:04 +00:00
|
|
|
{"yroot", (PyCFunction)MotionData_yroot, METH_VARARGS,
|
2003-01-02 20:36:14 +00:00
|
|
|
"Return the Y-position of the mouse cursor on the root window."},
|
2003-01-03 05:26:04 +00:00
|
|
|
{"pressx", (PyCFunction)MotionData_pressx, METH_VARARGS,
|
|
|
|
"Return the X-position of the mouse cursor at the start of the drag."},
|
|
|
|
{"pressy", (PyCFunction)MotionData_pressy, METH_VARARGS,
|
|
|
|
"Return the Y-position of the mouse cursor at the start of the drag."},
|
|
|
|
{"press_clientx", (PyCFunction)MotionData_press_clientx, METH_VARARGS,
|
|
|
|
"Return the X-position of the client at the start of the drag."},
|
|
|
|
{"press_clienty", (PyCFunction)MotionData_press_clienty, METH_VARARGS,
|
|
|
|
"Return the Y-position of the client at the start of the drag."},
|
|
|
|
{"press_clientwidth", (PyCFunction)MotionData_press_clientwidth,
|
|
|
|
METH_VARARGS,
|
|
|
|
"Return the width of the client at the start of the drag."},
|
|
|
|
{"press_clientheight", (PyCFunction)MotionData_press_clientheight,
|
|
|
|
METH_VARARGS,
|
|
|
|
"Return the height of the client at the start of the drag."},
|
|
|
|
{"time", (PyCFunction)MotionData_time, METH_VARARGS,
|
2003-01-02 20:36:14 +00:00
|
|
|
"Return the time at which the event occured."},
|
|
|
|
{NULL, NULL, 0, NULL}
|
|
|
|
};
|
|
|
|
|
2003-01-03 05:26:04 +00:00
|
|
|
static PyMethodDef ButtonData_methods[] = {
|
|
|
|
{"action", (PyCFunction)MotionData_action, METH_VARARGS,
|
|
|
|
"Return the action being executed."},
|
|
|
|
{"context", (PyCFunction)MotionData_context, METH_VARARGS,
|
|
|
|
"Return the context that the action is occuring in."},
|
|
|
|
{"window", (PyCFunction)MotionData_window, METH_VARARGS,
|
|
|
|
"Return the client window id."},
|
|
|
|
{"modifiers", (PyCFunction)MotionData_modifiers, METH_VARARGS,
|
|
|
|
"Return the modifier keys state."},
|
|
|
|
{"button", (PyCFunction)MotionData_button, METH_VARARGS,
|
|
|
|
"Return the number of the pressed button (1-5)."},
|
|
|
|
{"time", (PyCFunction)MotionData_time, METH_VARARGS,
|
|
|
|
"Return the time at which the event occured."},
|
|
|
|
{NULL, NULL, 0, NULL}
|
|
|
|
};
|
2002-12-30 06:31:45 +00:00
|
|
|
|
2003-01-03 05:26:04 +00:00
|
|
|
PyObject *KeyData_key(KeyData *self, PyObject *args)
|
2003-01-02 20:36:14 +00:00
|
|
|
{
|
|
|
|
if(!PyArg_ParseTuple(args,":key")) return NULL;
|
|
|
|
return PyString_FromString(
|
|
|
|
XKeysymToString(XKeycodeToKeysym(otk::OBDisplay::display, self->key, 0)));
|
2002-12-30 06:31:45 +00:00
|
|
|
|
2003-01-02 20:36:14 +00:00
|
|
|
}
|
2002-12-30 06:31:45 +00:00
|
|
|
|
2003-01-03 05:26:04 +00:00
|
|
|
static PyMethodDef KeyData_methods[] = {
|
|
|
|
{"window", (PyCFunction)MotionData_window, METH_VARARGS,
|
2003-01-02 20:36:14 +00:00
|
|
|
"Return the client window id."},
|
2003-01-03 05:26:04 +00:00
|
|
|
{"modifiers", (PyCFunction)MotionData_modifiers, METH_VARARGS,
|
2003-01-02 20:36:14 +00:00
|
|
|
"Return the modifier keys state."},
|
2003-01-03 05:26:04 +00:00
|
|
|
{"key", (PyCFunction)KeyData_key, METH_VARARGS,
|
2003-01-02 20:36:14 +00:00
|
|
|
"Return the name of the pressed key."},
|
2003-01-03 05:26:04 +00:00
|
|
|
{"time", (PyCFunction)MotionData_time, METH_VARARGS,
|
2003-01-02 20:36:14 +00:00
|
|
|
"Return the time at which the event occured."},
|
|
|
|
{NULL, NULL, 0, NULL}
|
|
|
|
};
|
|
|
|
|
2003-01-03 05:26:04 +00:00
|
|
|
static PyObject *MotionDataGetAttr(PyObject *obj, char *name)
|
|
|
|
{
|
|
|
|
return Py_FindMethod(MotionData_methods, obj, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *ButtonDataGetAttr(PyObject *obj, char *name)
|
2003-01-02 20:36:14 +00:00
|
|
|
{
|
2003-01-03 05:26:04 +00:00
|
|
|
return Py_FindMethod(ButtonData_methods, obj, name);
|
2003-01-02 20:36:14 +00:00
|
|
|
}
|
2002-12-30 06:31:45 +00:00
|
|
|
|
2003-01-03 05:26:04 +00:00
|
|
|
static PyObject *KeyDataGetAttr(PyObject *obj, char *name)
|
2003-01-02 20:36:14 +00:00
|
|
|
{
|
2003-01-03 05:26:04 +00:00
|
|
|
return Py_FindMethod(KeyData_methods, obj, name);
|
2002-12-30 06:31:45 +00:00
|
|
|
}
|
|
|
|
|
2003-01-03 05:26:04 +00:00
|
|
|
static PyTypeObject MotionData_Type = {
|
|
|
|
PyObject_HEAD_INIT(NULL)
|
|
|
|
0,
|
|
|
|
"MotionData",
|
|
|
|
sizeof(MotionData),
|
|
|
|
0,
|
|
|
|
dealloc,
|
|
|
|
0,
|
|
|
|
(getattrfunc)MotionDataGetAttr,
|
|
|
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
|
|
|
};
|
|
|
|
|
|
|
|
static PyTypeObject ButtonData_Type = {
|
2003-01-02 20:36:14 +00:00
|
|
|
PyObject_HEAD_INIT(NULL)
|
|
|
|
0,
|
2003-01-03 05:26:04 +00:00
|
|
|
"ButtonData",
|
|
|
|
sizeof(ButtonData),
|
2003-01-02 20:36:14 +00:00
|
|
|
0,
|
2003-01-03 05:26:04 +00:00
|
|
|
dealloc,
|
2003-01-02 20:36:14 +00:00
|
|
|
0,
|
2003-01-03 05:26:04 +00:00
|
|
|
(getattrfunc)ButtonDataGetAttr,
|
2003-01-02 20:36:14 +00:00
|
|
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
|
|
|
};
|
|
|
|
|
2003-01-03 05:26:04 +00:00
|
|
|
static PyTypeObject KeyData_Type = {
|
2003-01-02 20:36:14 +00:00
|
|
|
PyObject_HEAD_INIT(NULL)
|
|
|
|
0,
|
2003-01-03 05:26:04 +00:00
|
|
|
"KeyData",
|
|
|
|
sizeof(KeyData),
|
2003-01-02 20:36:14 +00:00
|
|
|
0,
|
2003-01-03 05:26:04 +00:00
|
|
|
dealloc,
|
2003-01-02 20:36:14 +00:00
|
|
|
0,
|
2003-01-03 05:26:04 +00:00
|
|
|
(getattrfunc)KeyDataGetAttr,
|
2003-01-02 20:36:14 +00:00
|
|
|
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
|
|
|
};
|
|
|
|
|
2003-01-03 05:26:04 +00:00
|
|
|
MotionData *new_motion_data(Window window, Time time, unsigned int state,
|
|
|
|
unsigned int button, MouseContext context,
|
|
|
|
MouseAction action, int xroot, int yroot,
|
|
|
|
const otk::Point &initpos, const otk::Rect &initarea)
|
|
|
|
{
|
|
|
|
MotionData *data = PyObject_New(MotionData, &MotionData_Type);
|
|
|
|
data->window = window;
|
|
|
|
data->time = time;
|
|
|
|
data->state = state;
|
|
|
|
data->button = button;
|
|
|
|
data->context= context;
|
|
|
|
data->action = action;
|
|
|
|
data->xroot = xroot;
|
|
|
|
data->yroot = yroot;
|
|
|
|
data->pressx = initpos.x();
|
|
|
|
data->pressy = initpos.y();
|
|
|
|
data->press_clientx = initarea.x();
|
|
|
|
data->press_clienty = initarea.y();
|
|
|
|
data->press_clientwidth = initarea.width();
|
|
|
|
data->press_clientheight = initarea.height();
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
ButtonData *new_button_data(Window window, Time time, unsigned int state,
|
|
|
|
unsigned int button, MouseContext context,
|
|
|
|
MouseAction action)
|
|
|
|
{
|
|
|
|
ButtonData *data = PyObject_New(ButtonData, &ButtonData_Type);
|
|
|
|
data->window = window;
|
|
|
|
data->time = time;
|
|
|
|
data->state = state;
|
|
|
|
data->button = button;
|
|
|
|
data->context= context;
|
|
|
|
data->action = action;
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
KeyData *new_key_data(Window window, Time time, unsigned int state,
|
|
|
|
unsigned int key)
|
|
|
|
{
|
|
|
|
KeyData *data = PyObject_New(KeyData, &KeyData_Type);
|
|
|
|
data->window = window;
|
|
|
|
data->time = time;
|
|
|
|
data->state = state;
|
|
|
|
data->key = key;
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
2003-01-02 20:36:14 +00:00
|
|
|
// **************** //
|
|
|
|
// End custom types //
|
|
|
|
// **************** //
|
|
|
|
|
|
|
|
void python_init(char *argv0)
|
2002-12-30 06:31:45 +00:00
|
|
|
{
|
2003-01-02 20:36:14 +00:00
|
|
|
Py_SetProgramName(argv0);
|
|
|
|
Py_Initialize();
|
|
|
|
init_otk();
|
|
|
|
init_openbox();
|
|
|
|
PyRun_SimpleString("from _otk import *; from _openbox import *;");
|
2003-01-02 21:05:29 +00:00
|
|
|
PyRun_SimpleString("openbox = Openbox_instance()");
|
2002-12-30 06:31:45 +00:00
|
|
|
|
2003-01-02 20:36:14 +00:00
|
|
|
// set up access to the python global variables
|
|
|
|
PyObject *obmodule = PyImport_AddModule("__main__");
|
|
|
|
obdict = PyModule_GetDict(obmodule);
|
2002-12-30 06:31:45 +00:00
|
|
|
|
2003-01-02 20:36:14 +00:00
|
|
|
// set up the custom types
|
2003-01-03 05:26:04 +00:00
|
|
|
MotionData_Type.ob_type = &PyType_Type;
|
|
|
|
ButtonData_Type.ob_type = &PyType_Type;
|
|
|
|
KeyData_Type.ob_type = &PyType_Type;
|
2002-12-30 16:42:15 +00:00
|
|
|
}
|
|
|
|
|
2003-01-02 20:36:14 +00:00
|
|
|
void python_destroy()
|
2002-12-31 06:59:46 +00:00
|
|
|
{
|
2003-01-02 20:36:14 +00:00
|
|
|
Py_DECREF(obdict);
|
2002-12-31 06:59:46 +00:00
|
|
|
}
|
|
|
|
|
2003-01-02 20:36:14 +00:00
|
|
|
bool python_exec(const std::string &path)
|
2002-12-30 06:31:45 +00:00
|
|
|
{
|
2003-01-02 20:36:14 +00:00
|
|
|
FILE *rcpyfd = fopen(path.c_str(), "r");
|
|
|
|
if (!rcpyfd) {
|
|
|
|
printf("failed to load python file %s\n", path.c_str());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
PyRun_SimpleFile(rcpyfd, const_cast<char*>(path.c_str()));
|
|
|
|
fclose(rcpyfd);
|
|
|
|
return true;
|
2002-12-30 06:31:45 +00:00
|
|
|
}
|
|
|
|
|
2003-01-03 05:26:04 +00:00
|
|
|
void python_callback(PyObject *func, PyObject *data)
|
2002-12-30 22:27:46 +00:00
|
|
|
{
|
|
|
|
PyObject *arglist;
|
|
|
|
PyObject *result;
|
|
|
|
|
2003-01-02 20:36:14 +00:00
|
|
|
arglist = Py_BuildValue("(O)", data);
|
|
|
|
|
2002-12-30 22:27:46 +00:00
|
|
|
// call the callback
|
2003-01-02 20:36:14 +00:00
|
|
|
result = PyEval_CallObject(func, arglist);
|
|
|
|
if (!result) {
|
2002-12-30 22:27:46 +00:00
|
|
|
// an exception occured in the script, display it
|
|
|
|
PyErr_Print();
|
|
|
|
}
|
|
|
|
|
2003-01-02 20:36:14 +00:00
|
|
|
Py_XDECREF(result);
|
2002-12-30 22:27:46 +00:00
|
|
|
Py_DECREF(arglist);
|
|
|
|
}
|
|
|
|
|
2003-01-02 20:36:14 +00:00
|
|
|
bool python_get_string(const char *name, std::string *value)
|
|
|
|
{
|
|
|
|
PyObject *val = PyDict_GetItemString(obdict, const_cast<char*>(name));
|
|
|
|
if (!(val && PyString_Check(val))) return false;
|
|
|
|
|
|
|
|
*value = PyString_AsString(val);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2003-01-02 21:05:29 +00:00
|
|
|
bool python_get_stringlist(const char *name, std::vector<std::string> *value)
|
|
|
|
{
|
|
|
|
PyObject *val = PyDict_GetItemString(obdict, const_cast<char*>(name));
|
|
|
|
if (!(val && PyList_Check(val))) return false;
|
|
|
|
|
|
|
|
for (int i = 0, end = PyList_Size(val); i < end; ++i) {
|
|
|
|
PyObject *str = PyList_GetItem(val, i);
|
|
|
|
if (PyString_Check(str))
|
|
|
|
value->push_back(PyString_AsString(str));
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2003-01-02 20:36:14 +00:00
|
|
|
|
2003-01-03 02:48:25 +00:00
|
|
|
// ************************************* //
|
|
|
|
// Stuff for calling from Python scripts //
|
|
|
|
// ************************************* //
|
|
|
|
|
|
|
|
/*
|
|
|
|
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 * mbind(const std::string &button, ob::MouseContext context,
|
|
|
|
ob::MouseAction action, PyObject *func)
|
|
|
|
{
|
|
|
|
if (!PyCallable_Check(func)) {
|
|
|
|
PyErr_SetString(PyExc_TypeError, "Invalid callback function.");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!ob::Openbox::instance->bindings()->addButton(button, context,
|
|
|
|
action, func)) {
|
|
|
|
PyErr_SetString(PyExc_RuntimeError,"Unable to add binding.");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
Py_INCREF(Py_None); return Py_None;
|
|
|
|
}
|
|
|
|
|
|
|
|
PyObject * kbind(PyObject *keylist, ob::KeyContext context, PyObject *func)
|
|
|
|
{
|
|
|
|
if (!PyCallable_Check(func)) {
|
|
|
|
PyErr_SetString(PyExc_TypeError, "Invalid callback function.");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
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 * kunbind(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 kunbind_all()
|
|
|
|
{
|
|
|
|
ob::Openbox::instance->bindings()->removeAll();
|
|
|
|
}
|
|
|
|
|
|
|
|
void set_reset_key(const std::string &key)
|
|
|
|
{
|
|
|
|
ob::Openbox::instance->bindings()->setResetKey(key);
|
|
|
|
}
|
2003-01-03 05:26:04 +00:00
|
|
|
|
2002-12-25 02:19:49 +00:00
|
|
|
}
|