graph_python.h
00001 /**************************************************************************** 00002 * graph_python.cpp - Functions for graph python api 00003 * 00004 * Copyright (c) 2004 Petri Damstén <damu@iki.fi> 00005 * 00006 * This file is part of SuperKaramba. 00007 * 00008 * SuperKaramba is free software; you can redistribute it and/or modify 00009 * it under the terms of the GNU General Public License as published by 00010 * the Free Software Foundation; either version 2 of the License, or 00011 * (at your option) any later version. 00012 * 00013 * SuperKaramba is distributed in the hope that it will be useful, 00014 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00015 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00016 * GNU General Public License for more details. 00017 * 00018 * You should have received a copy of the GNU General Public License 00019 * along with SuperKaramba; if not, write to the Free Software 00020 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 00021 ****************************************************************************/ 00022 00023 #ifndef GRAPH_PYTHON_H 00024 #define GRAPH_PYTHON_H 00025 00042 PyObject* py_createGraph(PyObject *self, PyObject *args); 00043 00056 PyObject* py_deleteGraph(PyObject *self, PyObject *args); 00057 00076 PyObject* py_getThemeGraph(PyObject *self, PyObject *args); 00077 00091 PyObject* py_getGraphSize(PyObject *self, PyObject *args); 00092 00107 PyObject* py_resizeGraph(PyObject *self, PyObject *args); 00108 00122 PyObject* py_getGraphPos(PyObject *self, PyObject *args); 00123 00138 PyObject* py_moveGraph(PyObject *self, PyObject *args); 00139 00153 PyObject* py_hideGraph(PyObject *self, PyObject *args); 00154 00168 PyObject* py_showGraph(PyObject *self, PyObject *args); 00169 00182 PyObject* py_getGraphValue(PyObject *self, PyObject *args); 00183 00197 PyObject* py_setGraphValue(PyObject *self, PyObject *args); 00198 00211 PyObject* py_getGraphMinMax(PyObject *self, PyObject *args); 00212 00227 PyObject* py_setGraphMinMax(PyObject *self, PyObject *args); 00228 00241 PyObject* py_getGraphSensor(PyObject *self, PyObject *args); 00242 00256 PyObject* py_setGraphSensor(PyObject *self, PyObject *args); 00257 00270 PyObject* py_getGraphColor(PyObject *self, PyObject *args); 00271 00287 PyObject* py_setGraphColor(PyObject *self, PyObject *args); 00288 00289 #endif // GRAPH_PYTHON_H