00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
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