1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
|
/* $Id$ */
/*
* (C) Copyright 2004-2005 Leszek Krupiski <leafnode@pld-linux.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License Version 2 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#ifndef __PYTHON_WINDOW_H_
#define __PYTHON_WINDOW_H_
#include <Python.h>
typedef struct
{
PyObject_HEAD;
window_t *w;
} ekg_windowObj;
void ekg_window_dealloc(ekg_windowObj *o);
PyObject * ekg_window_repr(ekg_windowObj * self);
PyObject * ekg_window_str(ekg_windowObj * self);
int ekg_window_init(ekg_windowObj *self, PyObject *args, PyObject *kwds);
PyObject* ekg_window_switch_to(ekg_windowObj *self, PyObject *args);
PyObject* ekg_window_echo(ekg_windowObj * self, PyObject *args);
PyObject* ekg_window_echo_format(ekg_windowObj * self, PyObject *args);
PyObject* ekg_window_kill(ekg_windowObj * self, PyObject *args);
PyObject* ekg_window_get_attr(ekg_windowObj * self, char * attr);
PyObject* ekg_window_next(ekg_windowObj *self, PyObject *args);
PyObject* ekg_window_prev(ekg_windowObj *self, PyObject *args);
staticforward PyMethodDef ekg_window_methods[] = {
{"switch_to", (PyCFunction)ekg_window_switch_to, METH_VARARGS, "Switch to this window"},
{"echo", (PyCFunction)ekg_window_echo, METH_VARARGS, "Print string on this window"},
{"echo_format", (PyCFunction)ekg_window_echo_format, METH_VARARGS, "Print formatted string on this window"},
{"kill", (PyCFunction)ekg_window_kill, METH_VARARGS, "Kill window"},
{"next", (PyCFunction)ekg_window_next, METH_VARARGS, "Return next window" },
{"prev", (PyCFunction)ekg_window_prev, METH_VARARGS, "Return previous window" },
{NULL, NULL, 0, NULL}
};
static PyTypeObject ekg_window_type = {
PyObject_HEAD_INIT(NULL)
0,
"window",
sizeof(ekg_windowObj),
0,
(destructor)ekg_window_dealloc,
0,
(getattrfunc)ekg_window_get_attr,
0,
0,
(reprfunc)ekg_window_repr,
0,
0,
0,
0, /*tp_hash */
0, /*tp_call*/
(reprfunc)ekg_window_str, /*tp_str*/
0, /*tp_getattro*/
0, /*tp_setattro*/
0, /*tp_as_buffer*/
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /*tp_flags*/
"Window object", /* tp_doc */
0, /* tp_traverse */
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
0, /* tp_iter */
0, /* tp_iternext */
ekg_window_methods, /* tp_methods */
0, /* tp_members */
0, /* tp_getset */
0, /* tp_base */
0, /* tp_dict */
0, /* tp_descr_get */
0, /* tp_descr_set */
0, /* tp_dictoffset */
(initproc)ekg_window_init, /* tp_init */
0, /* tp_alloc */
0, /* tp_new */
};
#endif
/*
* Local Variables:
* mode: c
* c-file-style: "k&r"
* c-basic-offset: 8
* indent-tabs-mode: t
* End:
* vim: sts=8 sw=8
*/
|