input_python.h
00001 /**************************************************************************** 00002 * input_python.h - Functions for input box 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 * Copyright (c) 2005 Alexander Wiedenbruch <mail@wiedenbruch.de> 00008 * 00009 * This file is part of SuperKaramba. 00010 * 00011 * SuperKaramba is free software; you can redistribute it and/or modify 00012 * it under the terms of the GNU General Public License as published by 00013 * the Free Software Foundation; either version 2 of the License, or 00014 * (at your option) any later version. 00015 * 00016 * SuperKaramba is distributed in the hope that it will be useful, 00017 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00018 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00019 * GNU General Public License for more details. 00020 * 00021 * You should have received a copy of the GNU General Public License 00022 * along with SuperKaramba; if not, write to the Free Software 00023 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 00024 ****************************************************************************/ 00025 00026 #ifndef INPUT_PYTHON_H 00027 #define INPUT_PYTHON_H 00028 00048 PyObject* py_createInputBox(PyObject *, PyObject *args); 00049 00066 PyObject* py_deleteInputBox(PyObject *, PyObject *args); 00067 00086 PyObject* py_getThemeInputBox(PyObject *self, PyObject *args); 00087 00100 PyObject* py_getInputBoxValue(PyObject *self, PyObject *args); 00101 00115 PyObject* py_setInputBoxValue(PyObject *self, PyObject *args); 00116 00129 PyObject* py_hideInputBox(PyObject *self, PyObject *args); 00130 00143 PyObject* py_showInputBox(PyObject *self, PyObject *args); 00144 00158 PyObject* py_getInputBoxPos(PyObject *self, PyObject *args); 00159 00175 PyObject* py_moveInputBox(PyObject *self, PyObject *args); 00176 00190 PyObject* py_getInputBoxSize(PyObject *self, PyObject *args); 00191 00206 PyObject* py_resizeInputBox(PyObject *self, PyObject *args); 00207 00222 PyObject* py_setInputBoxFont(PyObject *, PyObject *args); 00223 00236 PyObject* py_getInputBoxFont(PyObject *, PyObject *args); 00237 00255 PyObject* py_setInputBoxFontColor(PyObject *, PyObject *args); 00256 00269 PyObject* py_getInputBoxFontColor(PyObject *, PyObject *args); 00270 00288 PyObject* py_setInputBoxSelectionColor(PyObject *, PyObject *args); 00289 00302 PyObject* py_getInputBoxSelectionColor(PyObject *, PyObject *args); 00303 00321 PyObject* py_setInputBoxBGColor(PyObject *, PyObject *args); 00322 00335 PyObject* py_getInputBoxBGColor(PyObject *, PyObject *args); 00336 00354 PyObject* py_setInputBoxFrameColor(PyObject *, PyObject *args); 00355 00368 PyObject* py_getInputBoxFrameColor(PyObject *, PyObject *args); 00369 00387 PyObject* py_setInputBoxSelectedTextColor(PyObject *, PyObject *args); 00388 00401 PyObject* py_getInputBoxSelectedTextColor(PyObject *, PyObject *args); 00402 00418 PyObject* py_setInputBoxFontSize(PyObject *, PyObject *args); 00419 00432 PyObject* py_getInputBoxFontSize(PyObject *, PyObject *args); 00433 00446 PyObject* py_setInputFocus(PyObject *, PyObject *args); 00447 00460 PyObject* py_clearInputFocus(PyObject *, PyObject *args); 00461 00473 PyObject* py_getInputFocus(PyObject *, PyObject *args); 00474 00475 #endif