PyObject* py_getImagePos(PyObject *self, PyObject *args)
{
  return py_getPos(self, args, "ImageLabel");
}
Example #2
0
PyObject* py_getGraphPos(PyObject *self, PyObject *args)
{
  return py_getPos(self, args, "Graph");
}
Example #3
0
PyObject* py_getBarPos(PyObject *self, PyObject *args)
{
  return py_getPos(self, args, "Bar");
}
PyObject* py_getRichTextPos(PyObject *self, PyObject *args)
{
  return py_getPos(self, args, "RichTextLabel");
}