63 #define PyPlotItem_Check(op) PyObject_TypeCheck(op, &ito::PythonPlotItem::PyPlotItemType)
68 static void PyPlotItem_dealloc(
PyPlotItem *self);
69 static PyObject *PyPlotItem_new(PyTypeObject *type, PyObject *args, PyObject *kwds);
70 static int PyPlotItem_init(
PyPlotItem *self, PyObject *args, PyObject *kwds);
75 static PyObject* PyPlotItem_repr(
PyPlotItem *self);
77 static PyObject* PyPlotItem_pickPoints(
PyPlotItem *self, PyObject *args, PyObject *kwds);
78 static PyObject* PyPlotItem_drawAndPickElements(
PyPlotItem *self, PyObject *args, PyObject *kwds);
91 static PyGetSetDef PyPlotItem_getseters[];
92 static PyMemberDef PyPlotItem_members[];
93 static PyMethodDef PyPlotItem_methods[];
94 static PyTypeObject PyPlotItemType;
95 static PyModuleDef PyPlotItemModule;
96 static void PyPlotItem_addTpDict(PyObject *tp_dict);