dolphin/Source/Core/DolphinQt/Config/InfoWidget.h
Léo Lam 7097a7b3af
Qt: Re-add IOS version to the game info tab
This was accidentally removed during the Qt migration:
https://github.com/dolphin-emu/dolphin/pull/4734
2021-02-15 18:34:09 +01:00

51 lines
1.0 KiB
C++

// Copyright 2016 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
#pragma once
#include <memory>
#include <string>
#include <QWidget>
#include "UICommon/GameFile.h"
namespace DiscIO
{
class Volume;
}
class QComboBox;
class QGroupBox;
class QLineEdit;
class QPixmap;
class QTextEdit;
class InfoWidget final : public QWidget
{
Q_OBJECT
public:
explicit InfoWidget(const UICommon::GameFile& game);
~InfoWidget() override;
private:
void ChangeLanguage();
void SaveBanner();
QGroupBox* CreateFileDetails();
QGroupBox* CreateGameDetails();
QGroupBox* CreateBannerDetails();
QLineEdit* CreateValueDisplay(const QString& value);
QLineEdit* CreateValueDisplay(const std::string& value = "");
void CreateLanguageSelector();
QWidget* CreateBannerGraphic(const QPixmap& image);
std::unique_ptr<DiscIO::Volume> m_volume;
UICommon::GameFile m_game;
QComboBox* m_language_selector;
QLineEdit* m_name = {};
QLineEdit* m_maker = {};
QTextEdit* m_description = {};
};