#include "py_commands.h"
#include "Inform.h"
#include "PythonTextInterp.h"
#include "config.h"
#include "VMDApp.h"
#include "TextEvent.h"
#include "errcode.h"
Go to the source code of this file.
Functions | |
PyMODINIT_FUNC | PyInit_vmd (void) |
PyObject * | add_callback (PyObject *, PyObject *args) |
PyObject * | del_callback (PyObject *, PyObject *args) |
void | call_callbacks (const char *type, PyObject *arglist) |
PyObject * | initvmdcallbacks (void) |
Variables | |
PyObject * | cbdict = NULL |
PyMethodDef | CallbackMethods [] |
|
Definition at line 43 of file PythonTextInterp.C. |
|
Definition at line 89 of file PythonTextInterp.C. References cbdict, NULL, result, and state. Referenced by PythonTextInterp::doEvent, PythonTextInterp::frame_cb, PythonTextInterp::initialize_structure_cb, PythonTextInterp::molecule_changed_cb, PythonTextInterp::pick_atom_cb, PythonTextInterp::pick_value_cb, PythonTextInterp::timestep_cb, PythonTextInterp::trajectory_cb, and PythonTextInterp::userkey_cb. |
|
Definition at line 65 of file PythonTextInterp.C. |
|
Definition at line 139 of file PythonTextInterp.C. References CallbackMethods, and cbdict. |
|
Referenced by PythonTextInterp::PythonTextInterp. |
|
Initial value: { {"add_callback", (PyCFunction) add_callback, METH_VARARGS }, {"del_callback", (PyCFunction) del_callback, METH_VARARGS }, {NULL, NULL} } Definition at line 119 of file PythonTextInterp.C. Referenced by initvmdcallbacks. |
|
Definition at line 41 of file PythonTextInterp.C. Referenced by add_callback, call_callbacks, del_callback, and initvmdcallbacks. |