mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-25 15:19:53 -06:00
lay base for path settings dialog
This commit is contained in:
@ -12,6 +12,7 @@ SET(SOURCES_QT_SDL
|
|||||||
VideoSettingsDialog.cpp
|
VideoSettingsDialog.cpp
|
||||||
AudioSettingsDialog.cpp
|
AudioSettingsDialog.cpp
|
||||||
FirmwareSettingsDialog.cpp
|
FirmwareSettingsDialog.cpp
|
||||||
|
PathSettingsDialog.cpp
|
||||||
WifiSettingsDialog.cpp
|
WifiSettingsDialog.cpp
|
||||||
InterfaceSettingsDialog.cpp
|
InterfaceSettingsDialog.cpp
|
||||||
ROMInfoDialog.cpp
|
ROMInfoDialog.cpp
|
||||||
|
57
src/frontend/qt_sdl/PathSettingsDialog.cpp
Normal file
57
src/frontend/qt_sdl/PathSettingsDialog.cpp
Normal file
@ -0,0 +1,57 @@
|
|||||||
|
/*
|
||||||
|
Copyright 2016-2021 Arisotura
|
||||||
|
|
||||||
|
This file is part of melonDS.
|
||||||
|
|
||||||
|
melonDS is free software: you can redistribute it and/or modify it under
|
||||||
|
the terms of the GNU General Public License as published by the Free
|
||||||
|
Software Foundation, either version 3 of the License, or (at your option)
|
||||||
|
any later version.
|
||||||
|
|
||||||
|
melonDS is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||||
|
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License along
|
||||||
|
with melonDS. If not, see http://www.gnu.org/licenses/.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <QFileDialog>
|
||||||
|
|
||||||
|
#include "types.h"
|
||||||
|
#include "Config.h"
|
||||||
|
|
||||||
|
#include "PathSettingsDialog.h"
|
||||||
|
#include "ui_PathSettingsDialog.h"
|
||||||
|
|
||||||
|
|
||||||
|
PathSettingsDialog* PathSettingsDialog::currentDlg = nullptr;
|
||||||
|
|
||||||
|
extern std::string EmuDirectory;
|
||||||
|
|
||||||
|
|
||||||
|
PathSettingsDialog::PathSettingsDialog(QWidget* parent) : QDialog(parent), ui(new Ui::PathSettingsDialog)
|
||||||
|
{
|
||||||
|
ui->setupUi(this);
|
||||||
|
setAttribute(Qt::WA_DeleteOnClose);
|
||||||
|
|
||||||
|
//
|
||||||
|
}
|
||||||
|
|
||||||
|
PathSettingsDialog::~PathSettingsDialog()
|
||||||
|
{
|
||||||
|
delete ui;
|
||||||
|
}
|
||||||
|
|
||||||
|
void PathSettingsDialog::on_PathSettingsDialog_accepted()
|
||||||
|
{
|
||||||
|
//
|
||||||
|
closeDlg();
|
||||||
|
}
|
||||||
|
|
||||||
|
void PathSettingsDialog::on_PathSettingsDialog_rejected()
|
||||||
|
{
|
||||||
|
//
|
||||||
|
closeDlg();
|
||||||
|
}
|
66
src/frontend/qt_sdl/PathSettingsDialog.h
Normal file
66
src/frontend/qt_sdl/PathSettingsDialog.h
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
|
||||||
|
/*
|
||||||
|
Copyright 2016-2021 Arisotura
|
||||||
|
|
||||||
|
This file is part of melonDS.
|
||||||
|
|
||||||
|
melonDS is free software: you can redistribute it and/or modify it under
|
||||||
|
the terms of the GNU General Public License as published by the Free
|
||||||
|
Software Foundation, either version 3 of the License, or (at your option)
|
||||||
|
any later version.
|
||||||
|
|
||||||
|
melonDS is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||||
|
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License along
|
||||||
|
with melonDS. If not, see http://www.gnu.org/licenses/.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef PATHSETTINGSDIALOG_H
|
||||||
|
#define PATHSETTINGSDIALOG_H
|
||||||
|
|
||||||
|
#include <QDialog>
|
||||||
|
|
||||||
|
namespace Ui { class PathSettingsDialog; }
|
||||||
|
class PathSettingsDialog;
|
||||||
|
|
||||||
|
class PathSettingsDialog : public QDialog
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
|
||||||
|
public:
|
||||||
|
explicit PathSettingsDialog(QWidget* parent);
|
||||||
|
~PathSettingsDialog();
|
||||||
|
|
||||||
|
static PathSettingsDialog* currentDlg;
|
||||||
|
static PathSettingsDialog* openDlg(QWidget* parent)
|
||||||
|
{
|
||||||
|
if (currentDlg)
|
||||||
|
{
|
||||||
|
currentDlg->activateWindow();
|
||||||
|
return currentDlg;
|
||||||
|
}
|
||||||
|
|
||||||
|
currentDlg = new PathSettingsDialog(parent);
|
||||||
|
currentDlg->show();
|
||||||
|
return currentDlg;
|
||||||
|
}
|
||||||
|
static void closeDlg()
|
||||||
|
{
|
||||||
|
currentDlg = nullptr;
|
||||||
|
}
|
||||||
|
|
||||||
|
private slots:
|
||||||
|
void on_PathSettingsDialog_accepted();
|
||||||
|
void on_PathSettingsDialog_rejected();
|
||||||
|
|
||||||
|
//
|
||||||
|
|
||||||
|
private:
|
||||||
|
Ui::PathSettingsDialog* ui;
|
||||||
|
|
||||||
|
//
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // PATHSETTINGSDIALOG_H
|
141
src/frontend/qt_sdl/PathSettingsDialog.ui
Normal file
141
src/frontend/qt_sdl/PathSettingsDialog.ui
Normal file
@ -0,0 +1,141 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<ui version="4.0">
|
||||||
|
<class>PathSettingsDialog</class>
|
||||||
|
<widget class="QDialog" name="PathSettingsDialog">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>0</x>
|
||||||
|
<y>0</y>
|
||||||
|
<width>439</width>
|
||||||
|
<height>166</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<property name="windowTitle">
|
||||||
|
<string>Path settings - melonDS</string>
|
||||||
|
</property>
|
||||||
|
<layout class="QGridLayout" name="gridLayout">
|
||||||
|
<item row="0" column="1">
|
||||||
|
<widget class="QLineEdit" name="txtSaveFilePath">
|
||||||
|
<property name="clearButtonEnabled">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="2" column="2">
|
||||||
|
<widget class="QPushButton" name="btnCheatFileBrowse">
|
||||||
|
<property name="text">
|
||||||
|
<string>Browse...</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="1" column="0">
|
||||||
|
<widget class="QLabel" name="label_3">
|
||||||
|
<property name="text">
|
||||||
|
<string>Savestates path:</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="2" column="1">
|
||||||
|
<widget class="QLineEdit" name="txtCheatFilePath">
|
||||||
|
<property name="clearButtonEnabled">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="3" column="0" colspan="3">
|
||||||
|
<widget class="QLabel" name="label">
|
||||||
|
<property name="text">
|
||||||
|
<string>Leave a path blank to use the current ROM's path.</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="5" column="0" colspan="3">
|
||||||
|
<widget class="QDialogButtonBox" name="buttonBox">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
<property name="standardButtons">
|
||||||
|
<set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="2" column="0">
|
||||||
|
<widget class="QLabel" name="label_4">
|
||||||
|
<property name="text">
|
||||||
|
<string>Cheat files path:</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="0" column="2">
|
||||||
|
<widget class="QPushButton" name="btnSaveFileBrowse">
|
||||||
|
<property name="text">
|
||||||
|
<string>Browse...</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="1" column="2">
|
||||||
|
<widget class="QPushButton" name="btnSavestateBrowse">
|
||||||
|
<property name="text">
|
||||||
|
<string>Browse...</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="1" column="1">
|
||||||
|
<widget class="QLineEdit" name="txtSavestatePath">
|
||||||
|
<property name="clearButtonEnabled">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="0" column="0">
|
||||||
|
<widget class="QLabel" name="label_2">
|
||||||
|
<property name="text">
|
||||||
|
<string>Save files path:</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item row="4" column="0" colspan="3">
|
||||||
|
<widget class="QLabel" name="label_5">
|
||||||
|
<property name="text">
|
||||||
|
<string/>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
|
<resources/>
|
||||||
|
<connections>
|
||||||
|
<connection>
|
||||||
|
<sender>buttonBox</sender>
|
||||||
|
<signal>accepted()</signal>
|
||||||
|
<receiver>PathSettingsDialog</receiver>
|
||||||
|
<slot>accept()</slot>
|
||||||
|
<hints>
|
||||||
|
<hint type="sourcelabel">
|
||||||
|
<x>248</x>
|
||||||
|
<y>254</y>
|
||||||
|
</hint>
|
||||||
|
<hint type="destinationlabel">
|
||||||
|
<x>157</x>
|
||||||
|
<y>274</y>
|
||||||
|
</hint>
|
||||||
|
</hints>
|
||||||
|
</connection>
|
||||||
|
<connection>
|
||||||
|
<sender>buttonBox</sender>
|
||||||
|
<signal>rejected()</signal>
|
||||||
|
<receiver>PathSettingsDialog</receiver>
|
||||||
|
<slot>reject()</slot>
|
||||||
|
<hints>
|
||||||
|
<hint type="sourcelabel">
|
||||||
|
<x>316</x>
|
||||||
|
<y>260</y>
|
||||||
|
</hint>
|
||||||
|
<hint type="destinationlabel">
|
||||||
|
<x>286</x>
|
||||||
|
<y>274</y>
|
||||||
|
</hint>
|
||||||
|
</hints>
|
||||||
|
</connection>
|
||||||
|
</connections>
|
||||||
|
</ui>
|
@ -56,6 +56,7 @@
|
|||||||
#include "VideoSettingsDialog.h"
|
#include "VideoSettingsDialog.h"
|
||||||
#include "AudioSettingsDialog.h"
|
#include "AudioSettingsDialog.h"
|
||||||
#include "FirmwareSettingsDialog.h"
|
#include "FirmwareSettingsDialog.h"
|
||||||
|
#include "PathSettingsDialog.h"
|
||||||
#include "WifiSettingsDialog.h"
|
#include "WifiSettingsDialog.h"
|
||||||
#include "InterfaceSettingsDialog.h"
|
#include "InterfaceSettingsDialog.h"
|
||||||
#include "ROMInfoDialog.h"
|
#include "ROMInfoDialog.h"
|
||||||
@ -1414,6 +1415,9 @@ MainWindow::MainWindow(QWidget* parent) : QMainWindow(parent)
|
|||||||
actFirmwareSettings = menu->addAction("Firmware settings");
|
actFirmwareSettings = menu->addAction("Firmware settings");
|
||||||
connect(actFirmwareSettings, &QAction::triggered, this, &MainWindow::onOpenFirmwareSettings);
|
connect(actFirmwareSettings, &QAction::triggered, this, &MainWindow::onOpenFirmwareSettings);
|
||||||
|
|
||||||
|
actPathSettings = menu->addAction("Path settings");
|
||||||
|
connect(actPathSettings, &QAction::triggered, this, &MainWindow::onOpenPathSettings);
|
||||||
|
|
||||||
{
|
{
|
||||||
QMenu* submenu = menu->addMenu("Savestate settings");
|
QMenu* submenu = menu->addMenu("Savestate settings");
|
||||||
|
|
||||||
@ -2465,6 +2469,22 @@ void MainWindow::onFirmwareSettingsFinished(int res)
|
|||||||
emuThread->emuUnpause();
|
emuThread->emuUnpause();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void MainWindow::onOpenPathSettings()
|
||||||
|
{
|
||||||
|
emuThread->emuPause();
|
||||||
|
|
||||||
|
PathSettingsDialog* dlg = PathSettingsDialog::openDlg(this);
|
||||||
|
connect(dlg, &PathSettingsDialog::finished, this, &MainWindow::onPathSettingsFinished);
|
||||||
|
}
|
||||||
|
|
||||||
|
void MainWindow::onPathSettingsFinished(int res)
|
||||||
|
{
|
||||||
|
//if (FirmwareSettingsDialog::needsReset)
|
||||||
|
// onReset();
|
||||||
|
|
||||||
|
emuThread->emuUnpause();
|
||||||
|
}
|
||||||
|
|
||||||
void MainWindow::onUpdateAudioSettings()
|
void MainWindow::onUpdateAudioSettings()
|
||||||
{
|
{
|
||||||
SPU::SetInterpolation(Config::AudioInterp);
|
SPU::SetInterpolation(Config::AudioInterp);
|
||||||
|
@ -257,11 +257,13 @@ private slots:
|
|||||||
void onOpenVideoSettings();
|
void onOpenVideoSettings();
|
||||||
void onOpenAudioSettings();
|
void onOpenAudioSettings();
|
||||||
void onOpenFirmwareSettings();
|
void onOpenFirmwareSettings();
|
||||||
|
void onOpenPathSettings();
|
||||||
void onUpdateAudioSettings();
|
void onUpdateAudioSettings();
|
||||||
void onAudioSettingsFinished(int res);
|
void onAudioSettingsFinished(int res);
|
||||||
void onOpenWifiSettings();
|
void onOpenWifiSettings();
|
||||||
void onWifiSettingsFinished(int res);
|
void onWifiSettingsFinished(int res);
|
||||||
void onFirmwareSettingsFinished(int res);
|
void onFirmwareSettingsFinished(int res);
|
||||||
|
void onPathSettingsFinished(int res);
|
||||||
void onOpenInterfaceSettings();
|
void onOpenInterfaceSettings();
|
||||||
void onInterfaceSettingsFinished(int res);
|
void onInterfaceSettingsFinished(int res);
|
||||||
void onUpdateMouseTimer();
|
void onUpdateMouseTimer();
|
||||||
@ -334,6 +336,7 @@ public:
|
|||||||
QAction* actAudioSettings;
|
QAction* actAudioSettings;
|
||||||
QAction* actWifiSettings;
|
QAction* actWifiSettings;
|
||||||
QAction* actFirmwareSettings;
|
QAction* actFirmwareSettings;
|
||||||
|
QAction* actPathSettings;
|
||||||
QAction* actInterfaceSettings;
|
QAction* actInterfaceSettings;
|
||||||
QAction* actSavestateSRAMReloc;
|
QAction* actSavestateSRAMReloc;
|
||||||
QAction* actScreenSize[4];
|
QAction* actScreenSize[4];
|
||||||
|
Reference in New Issue
Block a user