mirror of https://github.com/PCSX2/pcsx2.git
93 lines
2.4 KiB
C++
93 lines
2.4 KiB
C++
// SPDX-FileCopyrightText: 2002-2023 PCSX2 Dev Team
|
|
// SPDX-License-Identifier: LGPL-3.0+
|
|
|
|
#include "NewInputRecordingDlg.h"
|
|
|
|
#include "QtUtils.h"
|
|
#include <QtCore/QString>
|
|
#include <QtWidgets/QDialog>
|
|
#include <QtWidgets/qfiledialog.h>
|
|
|
|
NewInputRecordingDlg::NewInputRecordingDlg(QWidget* parent)
|
|
: QDialog(parent)
|
|
{
|
|
m_ui.setupUi(this);
|
|
|
|
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
|
|
setFixedSize(geometry().width(), geometry().height());
|
|
|
|
// Default State
|
|
m_ui.m_recTypeWarning->hide();
|
|
m_ui.m_dlgBtns->button(QDialogButtonBox::Ok)->setEnabled(false);
|
|
m_ui.m_filePathInput->setDisabled(true);
|
|
|
|
connect(m_ui.m_recTypePowerOn, &QRadioButton::clicked, this, &NewInputRecordingDlg::onRecordingTypePowerOnChecked);
|
|
connect(m_ui.m_recTypeSaveState, &QRadioButton::clicked, this, &NewInputRecordingDlg::onRecordingTypeSaveStateChecked);
|
|
|
|
connect(m_ui.m_filePathBrowseBtn, &QPushButton::clicked, this, &NewInputRecordingDlg::onBrowseForPathClicked);
|
|
connect(m_ui.m_authorInput, &QLineEdit::textEdited, this, &NewInputRecordingDlg::onAuthorNameChanged);
|
|
}
|
|
|
|
NewInputRecordingDlg::~NewInputRecordingDlg() = default;
|
|
|
|
InputRecording::Type NewInputRecordingDlg::getInputRecType()
|
|
{
|
|
return m_recType;
|
|
}
|
|
|
|
std::string NewInputRecordingDlg::getFilePath()
|
|
{
|
|
return m_filePath.toStdString();
|
|
}
|
|
|
|
std::string NewInputRecordingDlg::getAuthorName()
|
|
{
|
|
return m_authorName.toStdString();
|
|
}
|
|
|
|
void NewInputRecordingDlg::onRecordingTypePowerOnChecked(bool checked)
|
|
{
|
|
if (checked)
|
|
{
|
|
m_recType = InputRecording::Type::POWER_ON;
|
|
m_ui.m_recTypeWarning->hide();
|
|
}
|
|
}
|
|
|
|
void NewInputRecordingDlg::onRecordingTypeSaveStateChecked(bool checked)
|
|
{
|
|
if (checked)
|
|
{
|
|
m_recType = InputRecording::Type::FROM_SAVESTATE;
|
|
m_ui.m_recTypeWarning->show();
|
|
}
|
|
}
|
|
|
|
void NewInputRecordingDlg::onBrowseForPathClicked()
|
|
{
|
|
QString filter = tr("Input Recording Files (*.p2m2)");
|
|
QString filename = QFileDialog::getSaveFileName(this, tr("Select a File"), QString(), filter, &filter);
|
|
if (filename.isEmpty())
|
|
return;
|
|
|
|
m_filePath = std::move(filename);
|
|
m_ui.m_filePathInput->setText(m_filePath);
|
|
updateFormStatus();
|
|
}
|
|
|
|
void NewInputRecordingDlg::onAuthorNameChanged(const QString& text)
|
|
{
|
|
m_authorName = text;
|
|
updateFormStatus();
|
|
}
|
|
|
|
bool NewInputRecordingDlg::isFormValid()
|
|
{
|
|
return !m_filePath.isEmpty() && !m_authorName.isEmpty();
|
|
}
|
|
|
|
void NewInputRecordingDlg::updateFormStatus()
|
|
{
|
|
m_ui.m_dlgBtns->button(QDialogButtonBox::Ok)->setEnabled(isFormValid());
|
|
}
|