mirror of
https://github.com/libretro/dolphin
synced 2024-11-05 04:53:51 -05:00
43 lines
917 B
C++
43 lines
917 B
C++
// Copyright 2016 Dolphin Emulator Project
|
|
// Licensed under GPLv2+
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include <QWidget>
|
|
|
|
#include "UICommon/GameFile.h"
|
|
|
|
class QComboBox;
|
|
class QGroupBox;
|
|
class QLineEdit;
|
|
class QPixmap;
|
|
class QTextEdit;
|
|
|
|
class InfoWidget final : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit InfoWidget(const UICommon::GameFile& game);
|
|
|
|
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);
|
|
|
|
UICommon::GameFile m_game;
|
|
QComboBox* m_language_selector;
|
|
QLineEdit* m_name = {};
|
|
QLineEdit* m_maker = {};
|
|
QTextEdit* m_description = {};
|
|
};
|