mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-27 08:05:41 +00:00
8c7a192128
Should've did this in the beginning.
42 lines
1,000 B
C++
42 lines
1,000 B
C++
// SPDX-FileCopyrightText: 2019-2022 Connor McLaughlin <stenzek@gmail.com>
|
|
// SPDX-License-Identifier: (GPL-3.0 OR CC-BY-NC-ND-4.0)
|
|
|
|
#pragma once
|
|
#include "common/types.h"
|
|
#include <QtWidgets/QWidget>
|
|
|
|
#include "ui_gamesummarywidget.h"
|
|
|
|
enum class DiscRegion : u8;
|
|
|
|
namespace GameDatabase {
|
|
struct Entry;
|
|
}
|
|
|
|
class SettingsDialog;
|
|
|
|
class GameSummaryWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
GameSummaryWidget(const std::string& path, const std::string& serial, DiscRegion region,
|
|
const GameDatabase::Entry* entry, SettingsDialog* dialog, QWidget* parent);
|
|
~GameSummaryWidget();
|
|
|
|
private Q_SLOTS:
|
|
void onInputProfileChanged(int index);
|
|
void onComputeHashClicked();
|
|
|
|
private:
|
|
void populateUi(const std::string& path, const std::string& serial, DiscRegion region,
|
|
const GameDatabase::Entry* entry);
|
|
void populateTracksInfo();
|
|
|
|
Ui::GameSummaryWidget m_ui;
|
|
SettingsDialog* m_dialog;
|
|
|
|
std::string m_path;
|
|
std::string m_redump_search_keyword;
|
|
};
|