diff options
Diffstat (limited to 'xbmc/games/dialogs/osd/DialogGameOSDHelp.h')
-rw-r--r-- | xbmc/games/dialogs/osd/DialogGameOSDHelp.h | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/xbmc/games/dialogs/osd/DialogGameOSDHelp.h b/xbmc/games/dialogs/osd/DialogGameOSDHelp.h new file mode 100644 index 0000000..6153075 --- /dev/null +++ b/xbmc/games/dialogs/osd/DialogGameOSDHelp.h @@ -0,0 +1,40 @@ +/* + * Copyright (C) 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 + +namespace KODI +{ +namespace GAME +{ +class CDialogGameOSD; + +class CDialogGameOSDHelp +{ +public: + CDialogGameOSDHelp(CDialogGameOSD& dialog); + + // Initialize help controls + void OnInitWindow(); + + // Check if any help controls are visible + bool IsVisible(); + +private: + // Utility functions + bool IsVisible(int windowId); + + // Construction parameters + CDialogGameOSD& m_dialog; + + // Help control IDs + static const int CONTROL_ID_HELP_TEXT; + static const int CONTROL_ID_GAME_CONTROLLER; +}; +} // namespace GAME +} // namespace KODI |