bar_python.h
00001 /**************************************************************************** 00002 * bar_python.cpp - Functions for bar 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 BAR_PYTHON_H 00024 #define BAR_PYTHON_H 00025 00042 PyObject* py_createBar(PyObject *self, PyObject *args); 00043 00056 PyObject* py_deleteBar(PyObject *self, PyObject *args); 00057 00076 PyObject* py_getThemeBar(PyObject *self, PyObject *args); 00077 00091 PyObject* py_getBarSize(PyObject *self, PyObject *args); 00092 00107 PyObject* py_resizeBar(PyObject *self, PyObject *args); 00108 00122 PyObject* py_getBarPos(PyObject *self, PyObject *args); 00123 00138 PyObject* py_moveBar(PyObject *self, PyObject *args); 00139 00153 PyObject* py_hideBar(PyObject *self, PyObject *args); 00154 00168 PyObject* py_showBar(PyObject *self, PyObject *args); 00169 00182 PyObject* py_getBarValue(PyObject *self, PyObject *args); 00183 00197 PyObject* py_setBarValue(PyObject *self, PyObject *args); 00198 00211 PyObject* py_getBarMinMax(PyObject *self, PyObject *args); 00212 00227 PyObject* py_setBarMinMax(PyObject *self, PyObject *args); 00228 00241 PyObject* py_getBarSensor(PyObject *self, PyObject *args); 00242 00256 PyObject* py_setBarSensor(PyObject *self, PyObject *args); 00257 00270 PyObject* py_getBarImage(PyObject *self, PyObject *args); 00271 00285 PyObject* py_setBarImage(PyObject *self, PyObject *args); 00286 00299 PyObject* py_getBarVertical(PyObject *self, PyObject *args); 00300 00314 PyObject* py_setBarVertical(PyObject *self, PyObject *args); 00315 00316 #endif // BAR_PYTHON_H