• Skip to content
  • Skip to link menu
KDE API Reference
  • KDE API Reference
  • kdeutils API Reference
  • KDE Home
  • Contact Us
 

superkaramba

  • sources
  • kde-4.12
  • kdeutils
  • superkaramba
  • src
  • python
python/input.h
Go to the documentation of this file.
1 /****************************************************************************
2 * input_python.h - Functions for input box python api
3 *
4 * Copyright (C) 2003 Hans Karlsson <karlsson.h@home.se>
5 * Copyright (C) 2003-2004 Adam Geitgey <adam@rootnode.org>
6 * Copyright (c) 2004 Petri Damstén <damu@iki.fi>
7 * Copyright (c) 2005 Alexander Wiedenbruch <mail@wiedenbruch.de>
8 *
9 * This file is part of SuperKaramba.
10 *
11 * SuperKaramba is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * SuperKaramba is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with SuperKaramba; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
24 ****************************************************************************/
25 
26 #ifndef INPUT_PYTHON_H
27 #define INPUT_PYTHON_H
28 
29 #include <Python.h>
30 
50 PyObject* py_createInputBox(PyObject *, PyObject *args);
51 
68 PyObject* py_deleteInputBox(PyObject *, PyObject *args);
69 
88 PyObject* py_getThemeInputBox(PyObject *self, PyObject *args);
89 
102 PyObject* py_getInputBoxValue(PyObject *self, PyObject *args);
103 
117 PyObject* py_setInputBoxValue(PyObject *self, PyObject *args);
118 
131 PyObject* py_hideInputBox(PyObject *self, PyObject *args);
132 
145 PyObject* py_showInputBox(PyObject *self, PyObject *args);
146 
160 PyObject* py_getInputBoxPos(PyObject *self, PyObject *args);
161 
177 PyObject* py_moveInputBox(PyObject *self, PyObject *args);
178 
192 PyObject* py_getInputBoxSize(PyObject *self, PyObject *args);
193 
208 PyObject* py_resizeInputBox(PyObject *self, PyObject *args);
209 
224 PyObject* py_setInputBoxFont(PyObject *, PyObject *args);
225 
238 PyObject* py_getInputBoxFont(PyObject *, PyObject *args);
239 
257 PyObject* py_setInputBoxFontColor(PyObject *, PyObject *args);
258 
271 PyObject* py_getInputBoxFontColor(PyObject *, PyObject *args);
272 
290 PyObject* py_setInputBoxSelectionColor(PyObject *, PyObject *args);
291 
304 PyObject* py_getInputBoxSelectionColor(PyObject *, PyObject *args);
305 
323 PyObject* py_setInputBoxBGColor(PyObject *, PyObject *args);
324 
337 PyObject* py_getInputBoxBGColor(PyObject *, PyObject *args);
338 
356 PyObject* py_setInputBoxFrameColor(PyObject *, PyObject *args);
357 
370 PyObject* py_getInputBoxFrameColor(PyObject *, PyObject *args);
371 
389 PyObject* py_setInputBoxSelectedTextColor(PyObject *, PyObject *args);
390 
403 PyObject* py_getInputBoxSelectedTextColor(PyObject *, PyObject *args);
404 
420 PyObject* py_setInputBoxFontSize(PyObject *, PyObject *args);
421 
434 PyObject* py_getInputBoxFontSize(PyObject *, PyObject *args);
435 
448 PyObject* py_setInputFocus(PyObject *, PyObject *args);
449 
462 PyObject* py_clearInputFocus(PyObject *, PyObject *args);
463 
475 PyObject* py_getInputFocus(PyObject *, PyObject *args);
476 
477 #endif
py_deleteInputBox
PyObject * py_deleteInputBox(PyObject *, PyObject *args)
InputBox/deleteInputBox.
Definition: python/input.cpp:63
PyObject
struct _object PyObject
Definition: python/karamba.h:35
py_setInputBoxBGColor
PyObject * py_setInputBoxBGColor(PyObject *, PyObject *args)
InputBox/changeInputBoxBackgroundColor.
Definition: python/input.cpp:203
py_showInputBox
PyObject * py_showInputBox(PyObject *self, PyObject *args)
InputBox/showInputBox.
Definition: python/input.cpp:97
py_setInputBoxFontSize
PyObject * py_setInputBoxFontSize(PyObject *, PyObject *args)
InputBox/changeInputBoxFontSize.
Definition: python/input.cpp:284
py_resizeInputBox
PyObject * py_resizeInputBox(PyObject *self, PyObject *args)
InputBox/resizeInputBox.
Definition: python/input.cpp:117
py_getInputBoxFont
PyObject * py_getInputBoxFont(PyObject *, PyObject *args)
InputBox/getInputBoxFont.
Definition: python/input.cpp:137
py_getInputBoxFontSize
PyObject * py_getInputBoxFontSize(PyObject *, PyObject *args)
InputBox/getInputBoxFontSize.
Definition: python/input.cpp:299
py_getInputBoxSize
PyObject * py_getInputBoxSize(PyObject *self, PyObject *args)
InputBox/getInputBoxSize.
Definition: python/input.cpp:112
py_getInputBoxPos
PyObject * py_getInputBoxPos(PyObject *self, PyObject *args)
InputBox/getInputBoxPos.
Definition: python/input.cpp:102
py_getInputBoxBGColor
PyObject * py_getInputBoxBGColor(PyObject *, PyObject *args)
InputBox/getInputBoxBackgroundColor.
Definition: python/input.cpp:217
py_setInputFocus
PyObject * py_setInputFocus(PyObject *, PyObject *args)
InputBox/setInputFocus.
Definition: python/input.cpp:311
py_getInputBoxValue
PyObject * py_getInputBoxValue(PyObject *self, PyObject *args)
InputBox/getInputBoxValue.
Definition: python/input.cpp:82
py_getInputFocus
PyObject * py_getInputFocus(PyObject *, PyObject *args)
InputBox/getInputFocus.
Definition: python/input.cpp:339
py_setInputBoxSelectionColor
PyObject * py_setInputBoxSelectionColor(PyObject *, PyObject *args)
InputBox/changeInputBoxSelectionColor.
Definition: python/input.cpp:176
py_getInputBoxFontColor
PyObject * py_getInputBoxFontColor(PyObject *, PyObject *args)
InputBox/getInputBoxFontColor.
Definition: python/input.cpp:163
py_setInputBoxValue
PyObject * py_setInputBoxValue(PyObject *self, PyObject *args)
InputBox/changeInputBox.
Definition: python/input.cpp:87
py_getThemeInputBox
PyObject * py_getThemeInputBox(PyObject *self, PyObject *args)
InputBox/getThemeInputBox.
Definition: python/input.cpp:77
py_getInputBoxSelectionColor
PyObject * py_getInputBoxSelectionColor(PyObject *, PyObject *args)
InputBox/getInputBoxSelectionColor.
Definition: python/input.cpp:190
py_moveInputBox
PyObject * py_moveInputBox(PyObject *self, PyObject *args)
InputBox/moveInputBox.
Definition: python/input.cpp:107
py_setInputBoxFont
PyObject * py_setInputBoxFont(PyObject *, PyObject *args)
InputBox/changeInputBoxFont.
Definition: python/input.cpp:122
py_getInputBoxFrameColor
PyObject * py_getInputBoxFrameColor(PyObject *, PyObject *args)
InputBox/getInputBoxFrameColor.
Definition: python/input.cpp:244
py_setInputBoxFontColor
PyObject * py_setInputBoxFontColor(PyObject *, PyObject *args)
InputBox/changeInputBoxFontColor.
Definition: python/input.cpp:149
py_setInputBoxFrameColor
PyObject * py_setInputBoxFrameColor(PyObject *, PyObject *args)
InputBox/changeInputBoxFrameColor.
Definition: python/input.cpp:230
py_getInputBoxSelectedTextColor
PyObject * py_getInputBoxSelectedTextColor(PyObject *, PyObject *args)
InputBox/getInputBoxSelectedTextColor.
Definition: python/input.cpp:271
py_createInputBox
PyObject * py_createInputBox(PyObject *, PyObject *args)
InputBox/createInputBox.
Definition: python/input.cpp:44
py_hideInputBox
PyObject * py_hideInputBox(PyObject *self, PyObject *args)
InputBox/hideInputBox.
Definition: python/input.cpp:92
py_setInputBoxSelectedTextColor
PyObject * py_setInputBoxSelectedTextColor(PyObject *, PyObject *args)
InputBox/changeInputBoxSelectedTextColor.
Definition: python/input.cpp:257
py_clearInputFocus
PyObject * py_clearInputFocus(PyObject *, PyObject *args)
InputBox/clearInputFocus.
Definition: python/input.cpp:326
This file is part of the KDE documentation.
Documentation copyright © 1996-2014 The KDE developers.
Generated on Tue Oct 14 2014 23:07:19 by doxygen 1.8.7 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.

superkaramba

Skip menu "superkaramba"
  • Main Page
  • Alphabetical List
  • Class List
  • Class Hierarchy
  • Class Members
  • File List
  • File Members
  • Related Pages

kdeutils API Reference

Skip menu "kdeutils API Reference"
  • ark
  • filelight
  • kcalc
  • kcharselect
  • kdf
  • kfloppy
  • kgpg
  • kremotecontrol
  • ktimer
  • kwallet
  • superkaramba
  • sweeper

Search



Report problems with this website to our bug tracking system.
Contact the specific authors with questions and comments about the page contents.

KDE® and the K Desktop Environment® logo are registered trademarks of KDE e.V. | Legal