mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-24 06:35:42 +00:00
68 lines
1.8 KiB
C++
68 lines
1.8 KiB
C++
#pragma once
|
|
#include "frontend-common/game_settings.h"
|
|
#include "ui_gamepropertiesdialog.h"
|
|
#include <QtWidgets/QDialog>
|
|
#include <array>
|
|
|
|
struct GameListEntry;
|
|
struct GameListCompatibilityEntry;
|
|
|
|
class QtHostInterface;
|
|
|
|
class GamePropertiesDialog final : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
GamePropertiesDialog(QtHostInterface* host_interface, QWidget* parent = nullptr);
|
|
~GamePropertiesDialog();
|
|
|
|
static void showForEntry(QtHostInterface* host_interface, const GameListEntry* ge, QWidget* parent);
|
|
|
|
public Q_SLOTS:
|
|
void clear();
|
|
void populate(const GameListEntry* ge);
|
|
|
|
protected:
|
|
void closeEvent(QCloseEvent* ev);
|
|
void resizeEvent(QResizeEvent* ev);
|
|
|
|
private Q_SLOTS:
|
|
void saveCompatibilityInfo();
|
|
void saveCompatibilityInfoIfChanged();
|
|
void setCompatibilityInfoChanged();
|
|
|
|
void onSetVersionTestedToCurrentClicked();
|
|
void onComputeHashClicked();
|
|
void onVerifyDumpClicked();
|
|
void onExportCompatibilityInfoClicked();
|
|
void updateCPUClockSpeedLabel();
|
|
|
|
private:
|
|
void setupAdditionalUi();
|
|
void connectUi();
|
|
void populateCompatibilityInfo(const std::string& game_code);
|
|
void populateTracksInfo(const std::string& image_path);
|
|
void populateGameSettings();
|
|
void populateBooleanUserSetting(QCheckBox* cb, const std::optional<bool>& value);
|
|
void connectBooleanUserSetting(QCheckBox* cb, std::optional<bool>* value);
|
|
void saveGameSettings();
|
|
void fillEntryFromUi(GameListCompatibilityEntry* entry);
|
|
void computeTrackHashes();
|
|
void onResize();
|
|
|
|
Ui::GamePropertiesDialog m_ui;
|
|
std::array<QCheckBox*, static_cast<u32>(GameSettings::Trait::Count)> m_trait_checkboxes{};
|
|
|
|
QtHostInterface* m_host_interface;
|
|
|
|
std::string m_path;
|
|
std::string m_game_code;
|
|
std::string m_game_title;
|
|
|
|
GameSettings::Entry m_game_settings;
|
|
|
|
bool m_compatibility_info_changed = false;
|
|
bool m_tracks_hashed = false;
|
|
};
|