#include <vtkPythonUtil.h>
List of all members.
Static Public Member Functions |
static const char * | PythonicClassName (const char *classname) |
static void | AddClassToMap (PyObject *obj, const char *classname) |
static PyObject * | FindClass (const char *classname) |
static PyObject * | FindNearestBaseClass (vtkObjectBase *ptr) |
static PyObject * | GetObjectFromPointer (vtkObjectBase *ptr) |
static void * | SIPGetPointerFromObject (PyObject *obj, const char *classname) |
static PyObject * | GetObjectFromObject (PyObject *arg, const char *type) |
static void | AddObjectToMap (PyObject *obj, vtkObjectBase *anInstance) |
static void | RemoveObjectFromMap (PyObject *obj) |
static PyVTKSpecialType * | FindSpecialType (const char *classname) |
static PyObject * | BuildDocString (const char *docstring[]) |
static char * | ManglePointer (const void *ptr, const char *type) |
static void * | UnmanglePointer (char *ptrText, int *len, const char *type) |
static long | VariantHash (const vtkVariant *variant) |
|
static vtkObjectBase * | GetPointerFromObject (PyObject *obj, const char *classname) |
|
static PyObject * | SIPGetObjectFromPointer (const void *ptr, const char *classname, bool is_new) |
|
static PyVTKSpecialType * | AddSpecialTypeToMap (PyTypeObject *pytype, PyMethodDef *methods, PyMethodDef *constructors, const char *docstring[], PyVTKSpecialCopyFunc copyfunc) |
|
static void * | GetPointerFromSpecialObject (PyObject *obj, const char *result_type, PyObject **newobj) |
|
static void | RegisterPythonCommand (vtkPythonCommand *) |
static void | UnRegisterPythonCommand (vtkPythonCommand *) |
Friends |
void | vtkPythonUtilDelete () |
void | vtkPythonUtilCreateIfNeeded () |
Detailed Description
Definition at line 40 of file vtkPythonUtil.h.
Member Function Documentation
If the name is templated or mangled, converts it into a python-printable name.
Add a PyVTKClass to the type lookup table, this allows us to later create object given only the class name.
Get information about a special VTK type, given the type name.
For an VTK object whose class is not in the ClassMap, search the whole ClassMap to find out which class is the closest base class of the object. Returns a PyVTKClass.
Extract the vtkObjectBase from a PyVTKObject. If the PyObject is not a PyVTKObject, or is not a PyVTKObject of the specified type, the python error indicator will be set. Special behavior: Py_None is converted to NULL without no error.
Convert a vtkObjectBase to a PyVTKObject. This will first check to see if the PyVTKObject already exists, and create a new PyVTKObject if necessary. This function also passes ownership of the reference to the PyObject. Special behaviour: NULL is converted to Py_None.
Extract the SIP wrapped object from a PyObject. If the conversion cannot be done, an error indicator is set. Special behavior: Py_None is converted to NULL without no error.
Convert a SIP wrapped object to a PyObject. Special behaviour: NULL is converted to Py_None.
Try to convert some PyObject into a PyVTKObject, currently conversion is supported for SWIG-style mangled pointer strings.
Add PyVTKObject/vtkObjectBase pairs to the internal mapping. This methods do not change the reference counts of either the vtkObjectBase or the PyVTKObject.
Remove a PyVTKObject from the internal mapping. No reference counts are changed.
static PyVTKSpecialType* vtkPythonUtil::AddSpecialTypeToMap |
( |
PyTypeObject * |
pytype, |
|
|
PyMethodDef * |
methods, |
|
|
PyMethodDef * |
constructors, |
|
|
const char * |
docstring[], |
|
|
PyVTKSpecialCopyFunc |
copyfunc |
|
) |
| [static] |
Add a special VTK type to the type lookup table, this allows us to later create object given only the class name.
Get information about a special VTK type, given the type name.
Given a PyObject, convert it into a "result_type" object, where "result_type" must be a wrapped type. The C object is returned as a void *, which must be cast to a pointer of the desired type. If conversion was necessary, then the created python object is returned in "newobj", but if the original python object was already of the correct type, then "newobj" will be set to NULL. If a python exception was raised, NULL will be returned.
Utility function to build a docstring by concatenating a series of strings until a null string is found.
Utility function for creating SWIG-style mangled pointer string.
Utility function decoding a SWIG-style mangled pointer string.
Register a vtkPythonCommand. Registering vtkPythonCommand instances ensures that when the interpreter is destroyed (and Py_AtExit() gets called), the vtkPythonCommand state is updated to avoid referring to dangling Python objects pointers. Note, this will not work with Py_NewInterpreter.
Register a vtkPythonCommand. Registering vtkPythonCommand instances ensures that when the interpreter is destroyed (and Py_AtExit() gets called), the vtkPythonCommand state is updated to avoid referring to dangling Python objects pointers. Note, this will not work with Py_NewInterpreter.
Friends And Related Function Documentation
The documentation for this class was generated from the following file: