2016-02-29 08:52:15 +00:00
|
|
|
// Copyright 2016 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2016-02-29 08:52:15 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
|
2017-12-31 19:33:36 +00:00
|
|
|
namespace UICommon
|
|
|
|
{
|
|
|
|
class GameFile;
|
|
|
|
}
|
2016-02-29 08:52:15 +00:00
|
|
|
|
|
|
|
class PropertiesDialog final : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2017-12-31 19:33:36 +00:00
|
|
|
explicit PropertiesDialog(QWidget* parent, const UICommon::GameFile& game);
|
2017-09-10 17:10:45 +00:00
|
|
|
|
|
|
|
signals:
|
|
|
|
void OpenGeneralSettings();
|
2022-03-31 05:44:32 +00:00
|
|
|
void OpenGraphicsSettings();
|
2023-11-15 17:03:21 +00:00
|
|
|
#ifdef USE_RETRO_ACHIEVEMENTS
|
|
|
|
void OpenAchievementSettings();
|
|
|
|
#endif // USE_RETRO_ACHIEVEMENTS
|
2016-02-29 08:52:15 +00:00
|
|
|
};
|