11 #include "addons/kodi-dev-kit/include/kodi/c-api/gui/dialogs/extended_progress.h" 45 static KODI_GUI_HANDLE
new_dialog(KODI_HANDLE kodiBase,
const char* title);
46 static void delete_dialog(KODI_HANDLE kodiBase, KODI_GUI_HANDLE handle);
47 static char* get_title(KODI_HANDLE kodiBase, KODI_GUI_HANDLE handle);
48 static void set_title(KODI_HANDLE kodiBase, KODI_GUI_HANDLE handle,
const char* title);
49 static char* get_text(KODI_HANDLE kodiBase, KODI_GUI_HANDLE handle);
50 static void set_text(KODI_HANDLE kodiBase, KODI_GUI_HANDLE handle,
const char* text);
51 static bool is_finished(KODI_HANDLE kodiBase, KODI_GUI_HANDLE handle);
52 static void mark_finished(KODI_HANDLE kodiBase, KODI_GUI_HANDLE handle);
53 static float get_percentage(KODI_HANDLE kodiBase, KODI_GUI_HANDLE handle);
54 static void set_percentage(KODI_HANDLE kodiBase, KODI_GUI_HANDLE handle,
float percentage);
55 static void set_progress(KODI_HANDLE kodiBase,
56 KODI_GUI_HANDLE handle,
static KODI_GUI_HANDLE new_dialog(KODI_HANDLE kodiBase, const char *title)
callback functions from add-on to kodi
Definition: ExtendedProgressBar.cpp:45
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: ExtendedProgressBar.h:29