#include "ekg2-config.h"#include "python.h"#include <sys/types.h>#include <stdlib.h>#include <unistd.h>#include <errno.h>#include <fcntl.h>#include <string.h>#include <Python.h>#include <ekg/debug.h>#include <ekg/dynstuff.h>#include <ekg/windows.h>#include <ekg/commands.h>#include <ekg/plugins.h>#include <ekg/protocol.h>#include <ekg/stuff.h>#include <ekg/themes.h>#include <ekg/userlist.h>#include <ekg/vars.h>#include <ekg/xmalloc.h>#include "python-ekg.h"#include "python-window.h"Funkcje | |
| int | ekg_window_init (ekg_windowObj *self, PyObject *args, PyObject *kwds) |
| PyObject * | ekg_window_get_attr (ekg_windowObj *self, char *attr) |
| void | ekg_window_dealloc (ekg_windowObj *o) |
| PyObject * | ekg_window_repr (ekg_windowObj *self) |
| PyObject * | ekg_window_str (ekg_windowObj *self) |
| 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_next (ekg_windowObj *self, PyObject *pyargs) |
| PyObject * | ekg_window_prev (ekg_windowObj *self, PyObject *pyargs) |
| void ekg_window_dealloc | ( | ekg_windowObj * | o | ) |
deallocation of window object
| PyObject* ekg_window_echo | ( | ekg_windowObj * | self, | |
| PyObject * | args | |||
| ) |
print on given window
| PyObject* ekg_window_echo_format | ( | ekg_windowObj * | self, | |
| PyObject * | args | |||
| ) |
print on window with given format
| PyObject* ekg_window_get_attr | ( | ekg_windowObj * | self, | |
| char * | attr | |||
| ) |
get attribute from window object
| int ekg_window_init | ( | ekg_windowObj * | self, | |
| PyObject * | args, | |||
| PyObject * | kwds | |||
| ) |
initialization of window object
| PyObject* ekg_window_kill | ( | ekg_windowObj * | self, | |
| PyObject * | args | |||
| ) |
print on window with given format
| PyObject* ekg_window_next | ( | ekg_windowObj * | self, | |
| PyObject * | pyargs | |||
| ) |
return next window object
| PyObject* ekg_window_prev | ( | ekg_windowObj * | self, | |
| PyObject * | pyargs | |||
| ) |
return previous window object
| PyObject* ekg_window_repr | ( | ekg_windowObj * | self | ) |
__repr__ method
| PyObject* ekg_window_str | ( | ekg_windowObj * | self | ) |
__str__ method
| PyObject* ekg_window_switch_to | ( | ekg_windowObj * | self, | |
| PyObject * | args | |||
| ) |
switch to current window
1.7.1