11 #include "addons/kodi-dev-kit/include/kodi/c-api/gui/controls/edit.h" 45 static void set_visible(KODI_HANDLE kodiBase, KODI_GUI_CONTROL_HANDLE handle,
bool visible);
46 static void set_enabled(KODI_HANDLE kodiBase, KODI_GUI_CONTROL_HANDLE handle,
bool enabled);
48 static void set_input_type(KODI_HANDLE kodiBase,
49 KODI_GUI_CONTROL_HANDLE handle,
53 static void set_label(KODI_HANDLE kodiBase, KODI_GUI_CONTROL_HANDLE handle,
const char* label);
54 static char* get_label(KODI_HANDLE kodiBase, KODI_GUI_CONTROL_HANDLE handle);
56 static void set_text(KODI_HANDLE kodiBase, KODI_GUI_CONTROL_HANDLE handle,
const char* text);
57 static char* get_text(KODI_HANDLE kodiBase, KODI_GUI_CONTROL_HANDLE handle);
59 static void set_cursor_position(KODI_HANDLE kodiBase,
60 KODI_GUI_CONTROL_HANDLE handle,
61 unsigned int position);
62 static unsigned int get_cursor_position(KODI_HANDLE kodiBase, KODI_GUI_CONTROL_HANDLE handle);
static void set_visible(KODI_HANDLE kodiBase, KODI_GUI_CONTROL_HANDLE handle, bool visible)
callback functions from add-on to kodi
Definition: Edit.cpp:40
Main structure passed from kodi to addon with basic information needed to create add-on.
Definition: addon_base.h:378
Global gui Add-on to Kodi callback functions.
Definition: Edit.h:29