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