From c04dcc2e7d834218ef2d4194331e383402495ae1 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 10 Apr 2024 20:07:22 +0200 Subject: Adding upstream version 2:20.4+dfsg. Signed-off-by: Daniel Baumann --- xbmc/games/dialogs/osd/DialogGameStretchMode.h | 51 ++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 xbmc/games/dialogs/osd/DialogGameStretchMode.h (limited to 'xbmc/games/dialogs/osd/DialogGameStretchMode.h') diff --git a/xbmc/games/dialogs/osd/DialogGameStretchMode.h b/xbmc/games/dialogs/osd/DialogGameStretchMode.h new file mode 100644 index 0000000..1e05061 --- /dev/null +++ b/xbmc/games/dialogs/osd/DialogGameStretchMode.h @@ -0,0 +1,51 @@ +/* + * Copyright (C) 2017-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 "DialogGameVideoSelect.h" +#include "cores/GameSettings.h" + +#include + +namespace KODI +{ +namespace GAME +{ +class CDialogGameStretchMode : public CDialogGameVideoSelect +{ +public: + CDialogGameStretchMode(); + ~CDialogGameStretchMode() override = default; + +protected: + // implementation of CDialogGameVideoSelect + std::string GetHeading() override; + void PreInit() override; + void GetItems(CFileItemList& items) override; + void OnItemFocus(unsigned int index) override; + unsigned int GetFocusedItem() const override; + void PostExit() override; + bool OnClickAction() override; + +private: + struct StretchModeProperties + { + int stringIndex; + RETRO::STRETCHMODE stretchMode; + }; + + std::vector m_stretchModes; + + /*! + * \brief The list of all the stretch modes along with their properties + */ + static const std::vector m_allStretchModes; +}; +} // namespace GAME +} // namespace KODI -- cgit v1.2.3