2016-02-29 08:52:15 +00:00
|
|
|
// Copyright 2016 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include <QDialogButtonBox>
|
2018-03-20 09:12:11 +00:00
|
|
|
#include <QPushButton>
|
2016-02-29 08:52:15 +00:00
|
|
|
#include <QTabWidget>
|
|
|
|
#include <QVBoxLayout>
|
|
|
|
|
2018-01-01 20:01:58 +00:00
|
|
|
#include "DolphinQt2/Config/ARCodeWidget.h"
|
2016-02-29 08:52:15 +00:00
|
|
|
#include "DolphinQt2/Config/FilesystemWidget.h"
|
2018-03-01 12:12:31 +00:00
|
|
|
#include "DolphinQt2/Config/GameConfigWidget.h"
|
2017-09-10 17:10:45 +00:00
|
|
|
#include "DolphinQt2/Config/GeckoCodeWidget.h"
|
2016-02-29 08:52:15 +00:00
|
|
|
#include "DolphinQt2/Config/InfoWidget.h"
|
2018-02-16 13:53:52 +00:00
|
|
|
#include "DolphinQt2/Config/PatchesWidget.h"
|
2016-02-29 08:52:15 +00:00
|
|
|
#include "DolphinQt2/Config/PropertiesDialog.h"
|
2018-03-17 15:07:51 +00:00
|
|
|
#include "DolphinQt2/QtUtils/WrapInScrollArea.h"
|
2017-12-31 19:33:36 +00:00
|
|
|
#include "UICommon/GameFile.h"
|
2016-02-29 08:52:15 +00:00
|
|
|
|
2017-12-31 19:33:36 +00:00
|
|
|
PropertiesDialog::PropertiesDialog(QWidget* parent, const UICommon::GameFile& game)
|
|
|
|
: QDialog(parent)
|
2016-02-29 08:52:15 +00:00
|
|
|
{
|
2017-12-31 19:33:36 +00:00
|
|
|
setWindowTitle(QStringLiteral("%1: %2 - %3")
|
|
|
|
.arg(QString::fromStdString(game.GetFileName()),
|
|
|
|
QString::fromStdString(game.GetGameID()),
|
|
|
|
QString::fromStdString(game.GetLongName())));
|
2018-05-05 00:29:16 +00:00
|
|
|
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
|
|
|
|
|
2016-02-29 08:52:15 +00:00
|
|
|
QVBoxLayout* layout = new QVBoxLayout();
|
|
|
|
|
|
|
|
QTabWidget* tab_widget = new QTabWidget(this);
|
|
|
|
InfoWidget* info = new InfoWidget(game);
|
2017-09-10 17:10:45 +00:00
|
|
|
|
2018-01-01 20:01:58 +00:00
|
|
|
ARCodeWidget* ar = new ARCodeWidget(game);
|
2017-09-10 17:10:45 +00:00
|
|
|
GeckoCodeWidget* gecko = new GeckoCodeWidget(game);
|
2018-02-16 13:53:52 +00:00
|
|
|
PatchesWidget* patches = new PatchesWidget(game);
|
2018-03-01 12:12:31 +00:00
|
|
|
GameConfigWidget* game_config = new GameConfigWidget(game);
|
2017-09-10 17:10:45 +00:00
|
|
|
|
|
|
|
connect(gecko, &GeckoCodeWidget::OpenGeneralSettings, this,
|
|
|
|
&PropertiesDialog::OpenGeneralSettings);
|
|
|
|
|
2018-01-01 20:01:58 +00:00
|
|
|
connect(ar, &ARCodeWidget::OpenGeneralSettings, this, &PropertiesDialog::OpenGeneralSettings);
|
|
|
|
|
2018-03-17 23:06:44 +00:00
|
|
|
tab_widget->addTab(GetWrappedWidget(game_config, this, 50, 80), tr("Game Config"));
|
|
|
|
tab_widget->addTab(GetWrappedWidget(patches, this, 50, 80), tr("Patches"));
|
|
|
|
tab_widget->addTab(GetWrappedWidget(ar, this, 50, 80), tr("AR Codes"));
|
|
|
|
tab_widget->addTab(GetWrappedWidget(gecko, this, 50, 80), tr("Gecko Codes"));
|
|
|
|
tab_widget->addTab(GetWrappedWidget(info, this, 50, 80), tr("Info"));
|
2017-08-25 18:32:07 +00:00
|
|
|
|
2017-12-31 19:33:36 +00:00
|
|
|
if (DiscIO::IsDisc(game.GetPlatform()))
|
2017-08-25 18:32:07 +00:00
|
|
|
{
|
|
|
|
FilesystemWidget* filesystem = new FilesystemWidget(game);
|
2018-03-17 23:06:44 +00:00
|
|
|
tab_widget->addTab(GetWrappedWidget(filesystem, this, 50, 80), tr("Filesystem"));
|
2017-08-25 18:32:07 +00:00
|
|
|
}
|
|
|
|
|
2016-02-29 08:52:15 +00:00
|
|
|
layout->addWidget(tab_widget);
|
|
|
|
|
2018-03-20 09:12:11 +00:00
|
|
|
QDialogButtonBox* close_box = new QDialogButtonBox(QDialogButtonBox::Close);
|
|
|
|
|
|
|
|
connect(close_box, &QDialogButtonBox::rejected, this, &QDialog::reject);
|
|
|
|
|
|
|
|
layout->addWidget(close_box);
|
2016-02-29 08:52:15 +00:00
|
|
|
|
|
|
|
setLayout(layout);
|
|
|
|
}
|