|
ekg2
GIT master
|
#include "ekg2.h"#include <sys/types.h>#include <stdlib.h>#include <stdio.h>#include <unistd.h>#include <errno.h>#include <fcntl.h>#include <string.h>#include <Python.h>#include "python.h"#include "python-ekg.h"#include "python-session.h"#include "python-plugin.h"#include "python-window.h"
Funkcje | |
| PyObject * | python_build_session (char *name) |
| PyObject * | python_build_window_id (int id) |
| PyObject * | python_build_window_w (window_t *w) |
| PyObject * | ekg_cmd_command (PyObject *self, PyObject *args) |
| PyObject * | ekg_cmd_variable_add (PyObject *self, PyObject *args) |
| PyObject * | ekg_cmd_handler_bind (PyObject *self, PyObject *args) |
| PyObject * | ekg_cmd_command_bind (PyObject *self, PyObject *args) |
| PyObject * | ekg_cmd_timer_bind (PyObject *self, PyObject *args) |
| PyObject * | ekg_cmd_watch_add (PyObject *self, PyObject *args) |
| PyObject * | ekg_cmd_echo (PyObject *self, PyObject *args) |
| PyObject * | ekg_cmd_printf (PyObject *self, PyObject *pyargs) |
| PyObject * | ekg_cmd_debug (PyObject *self, PyObject *pyargs) |
| PyObject * | ekg_cmd_plugins (PyObject *self, PyObject *pyargs) |
| PyObject * | ekg_cmd_plugin_get (PyObject *self, PyObject *pyargs) |
| PyObject * | ekg_cmd_sessions (PyObject *self, PyObject *pyargs) |
| PyObject * | ekg_cmd_session_get (PyObject *self, PyObject *pyargs) |
| PyObject * | ekg_cmd_session_current (PyObject *self, PyObject *pyargs) |
| PyObject * | ekg_cmd_window_new (PyObject *self, PyObject *pyargs) |
| PyObject * | ekg_cmd_window_get (PyObject *self, PyObject *pyargs) |
| PyObject * | ekg_cmd_windows (PyObject *self, PyObject *pyargs) |
| PyObject * | ekg_cmd_window_current (PyObject *self, PyObject *pyargs) |
| PyObject* ekg_cmd_command | ( | PyObject * | self, |
| PyObject * | args | ||
| ) |
run ekg command
| PyObject* ekg_cmd_command_bind | ( | PyObject * | self, |
| PyObject * | args | ||
| ) |
| PyObject* ekg_cmd_debug | ( | PyObject * | self, |
| PyObject * | pyargs | ||
| ) |
record debug message
| PyObject* ekg_cmd_echo | ( | PyObject * | self, |
| PyObject * | args | ||
| ) |
print text in "generic" format
| PyObject* ekg_cmd_handler_bind | ( | PyObject * | self, |
| PyObject * | args | ||
| ) |
| PyObject* ekg_cmd_plugin_get | ( | PyObject * | self, |
| PyObject * | pyargs | ||
| ) |
return plugin object
| PyObject* ekg_cmd_plugins | ( | PyObject * | self, |
| PyObject * | pyargs | ||
| ) |
return plugin list
| PyObject* ekg_cmd_printf | ( | PyObject * | self, |
| PyObject * | pyargs | ||
| ) |
extended display
| PyObject* ekg_cmd_session_current | ( | PyObject * | self, |
| PyObject * | pyargs | ||
| ) |
return session object
| PyObject* ekg_cmd_session_get | ( | PyObject * | self, |
| PyObject * | pyargs | ||
| ) |
return session object
| PyObject* ekg_cmd_sessions | ( | PyObject * | self, |
| PyObject * | pyargs | ||
| ) |
return session list
| PyObject* ekg_cmd_timer_bind | ( | PyObject * | self, |
| PyObject * | args | ||
| ) |
| PyObject* ekg_cmd_variable_add | ( | PyObject * | self, |
| PyObject * | args | ||
| ) |
| PyObject* ekg_cmd_watch_add | ( | PyObject * | self, |
| PyObject * | args | ||
| ) |
| PyObject* ekg_cmd_window_current | ( | PyObject * | self, |
| PyObject * | pyargs | ||
| ) |
create window
| PyObject* ekg_cmd_window_get | ( | PyObject * | self, |
| PyObject * | pyargs | ||
| ) |
create window
| PyObject* ekg_cmd_window_new | ( | PyObject * | self, |
| PyObject * | pyargs | ||
| ) |
create window
| PyObject* ekg_cmd_windows | ( | PyObject * | self, |
| PyObject * | pyargs | ||
| ) |
return window list
| PyObject* python_build_session | ( | char * | name | ) |
return session object with given name
| PyObject* python_build_window_id | ( | int | id | ) |
return window object with given id
| PyObject* python_build_window_w | ( | window_t * | w | ) |
build window object from window_t struct
1.8.13