richtextlabel_python.h
00001 /**************************************************************************** 00002 * richtextlabel_python.h - Functions for richtext python api 00003 * 00004 * Copyright (C) 2003 Hans Karlsson <karlsson.h@home.se> 00005 * Copyright (C) 2003-2004 Adam Geitgey <adam@rootnode.org> 00006 * Copyright (c) 2004 Petri Damstén <damu@iki.fi> 00007 * 00008 * This file is part of SuperKaramba. 00009 * 00010 * SuperKaramba is free software; you can redistribute it and/or modify 00011 * it under the terms of the GNU General Public License as published by 00012 * the Free Software Foundation; either version 2 of the License, or 00013 * (at your option) any later version. 00014 * 00015 * SuperKaramba is distributed in the hope that it will be useful, 00016 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00017 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00018 * GNU General Public License for more details. 00019 * 00020 * You should have received a copy of the GNU General Public License 00021 * along with SuperKaramba; if not, write to the Free Software 00022 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 00023 ****************************************************************************/ 00024 00025 #ifndef RICHTEXTLABEL_PYTHON_H 00026 #define RICHTEXTLABEL_PYTHON_H 00027 00057 PyObject* py_createRichText(PyObject *self, PyObject *args); 00058 00073 PyObject* py_deleteRichText(PyObject *self, PyObject *args); 00074 00093 PyObject* py_getThemeRichText(PyObject *self, PyObject *args); 00094 00108 PyObject* py_getRichTextSize(PyObject *self, PyObject *args); 00109 00124 PyObject* py_resizeRichText(PyObject *self, PyObject *args); 00125 00139 PyObject* py_getRichTextPos(PyObject *self, PyObject *args); 00140 00156 PyObject* py_moveRichText(PyObject *self, PyObject *args); 00157 00171 PyObject* py_hideRichText(PyObject *self, PyObject *args); 00172 00186 PyObject* py_showRichText(PyObject *self, PyObject *args); 00187 00200 PyObject* py_getRichTextValue(PyObject *self, PyObject *args); 00201 00230 PyObject* py_setRichTextValue(PyObject *self, PyObject *args); 00231 00244 PyObject* py_getRichTextSensor(PyObject *self, PyObject *args); 00245 00259 PyObject* py_setRichTextSensor(PyObject *self, PyObject *args); 00260 00274 PyObject* py_setRichTextFontSize(PyObject *self, PyObject *args); 00275 00288 PyObject* py_getRichTextFontSize(PyObject *self, PyObject *args); 00289 00303 PyObject* py_setRichTextFont(PyObject *self, PyObject *args); 00304 00317 PyObject* py_getRichTextFont(PyObject *self, PyObject *args); 00318 00336 PyObject* py_set_rich_text_width(PyObject* self, PyObject* args); 00337 00338 #endif // RICHTEXTLABEL_PYTHON_H