diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-10 18:07:22 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-10 18:07:22 +0000 |
commit | c04dcc2e7d834218ef2d4194331e383402495ae1 (patch) | |
tree | 7333e38d10d75386e60f336b80c2443c1166031d /xbmc/addons/interfaces/gui/General.h | |
parent | Initial commit. (diff) | |
download | kodi-c04dcc2e7d834218ef2d4194331e383402495ae1.tar.xz kodi-c04dcc2e7d834218ef2d4194331e383402495ae1.zip |
Adding upstream version 2:20.4+dfsg.upstream/2%20.4+dfsg
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'xbmc/addons/interfaces/gui/General.h')
-rw-r--r-- | xbmc/addons/interfaces/gui/General.h | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/xbmc/addons/interfaces/gui/General.h b/xbmc/addons/interfaces/gui/General.h new file mode 100644 index 0000000..146d4f7 --- /dev/null +++ b/xbmc/addons/interfaces/gui/General.h @@ -0,0 +1,62 @@ +/* + * Copyright (C) 2005-2018 Team Kodi + * This file is part of Kodi - https://kodi.tv + * + * SPDX-License-Identifier: GPL-2.0-or-later + * See LICENSES/README.md for more information. + */ + +#pragma once + +#include "addons/kodi-dev-kit/include/kodi/c-api/gui/general.h" + +extern "C" +{ + + struct AddonGlobalInterface; + + namespace ADDON + { + + /*! + * @brief Global gui Add-on to Kodi callback functions + * + * To hold general gui functions and initialize also all other gui related types not + * related to a instance type and usable for every add-on type. + * + * Related add-on header is "./xbmc/addons/kodi-dev-kit/include/kodi/gui/General.h" + */ + struct Interface_GUIGeneral + { + static void Init(AddonGlobalInterface* addonInterface); + static void DeInit(AddonGlobalInterface* addonInterface); + + /*! + * @brief callback functions from add-on to kodi + * + * @note For add of new functions use the "_" style to identify direct a + * add-on callback function. Everything with CamelCase is only for the + * usage in Kodi only. + * + * The parameter `kodiBase` is used to become the pointer for a `CAddonDll` + * class. + */ + //@{ + static void lock(); + static void unlock(); + + static int get_screen_height(KODI_HANDLE kodiBase); + static int get_screen_width(KODI_HANDLE kodiBase); + static int get_video_resolution(KODI_HANDLE kodiBase); + static int get_current_window_dialog_id(KODI_HANDLE kodiBase); + static int get_current_window_id(KODI_HANDLE kodiBase); + static ADDON_HARDWARE_CONTEXT get_hw_context(KODI_HANDLE kodiBase); + static AdjustRefreshRateStatus get_adjust_refresh_rate_status(KODI_HANDLE kodiBase); + //@} + + private: + static int m_iAddonGUILockRef; + }; + + } /* namespace ADDON */ +} /* extern "C" */ |