mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-22 05:45:38 +00:00
Qt: Add Remove Disc option to change disc menu
This commit is contained in:
parent
fa027d9c2a
commit
c8a00c58eb
|
@ -272,6 +272,11 @@ void MainWindow::onChangeDiscFromGameListActionTriggered()
|
|||
switchToGameListView();
|
||||
}
|
||||
|
||||
void MainWindow::onRemoveDiscActionTriggered()
|
||||
{
|
||||
m_host_interface->changeDisc(QString());
|
||||
}
|
||||
|
||||
static void OpenURL(QWidget* parent, const QUrl& qurl)
|
||||
{
|
||||
if (!QDesktopServices::openUrl(qurl))
|
||||
|
@ -503,6 +508,7 @@ void MainWindow::connectSignals()
|
|||
connect(m_ui.actionChangeDiscFromFile, &QAction::triggered, this, &MainWindow::onChangeDiscFromFileActionTriggered);
|
||||
connect(m_ui.actionChangeDiscFromGameList, &QAction::triggered, this,
|
||||
&MainWindow::onChangeDiscFromGameListActionTriggered);
|
||||
connect(m_ui.actionRemoveDisc, &QAction::triggered, this, &MainWindow::onRemoveDiscActionTriggered);
|
||||
connect(m_ui.actionAddGameDirectory, &QAction::triggered,
|
||||
[this]() { getSettingsDialog()->getGameListSettingsWidget()->addSearchDirectory(this); });
|
||||
connect(m_ui.actionPowerOff, &QAction::triggered, m_host_interface, &QtHostInterface::powerOffSystem);
|
||||
|
|
|
@ -45,6 +45,7 @@ private Q_SLOTS:
|
|||
void onStartBIOSActionTriggered();
|
||||
void onChangeDiscFromFileActionTriggered();
|
||||
void onChangeDiscFromGameListActionTriggered();
|
||||
void onRemoveDiscActionTriggered();
|
||||
void onGitHubRepositoryActionTriggered();
|
||||
void onIssueTrackerActionTriggered();
|
||||
void onDiscordServerActionTriggered();
|
||||
|
|
|
@ -47,6 +47,7 @@
|
|||
</property>
|
||||
<addaction name="actionChangeDiscFromFile"/>
|
||||
<addaction name="actionChangeDiscFromGameList"/>
|
||||
<addaction name="actionRemoveDisc"/>
|
||||
</widget>
|
||||
<widget class="QMenu" name="menuLoadState">
|
||||
<property name="title">
|
||||
|
@ -399,6 +400,11 @@
|
|||
<string>From Game List...</string>
|
||||
</property>
|
||||
</action>
|
||||
<action name="actionRemoveDisc">
|
||||
<property name="text">
|
||||
<string>Remove Disc</string>
|
||||
</property>
|
||||
</action>
|
||||
<action name="actionResume_State">
|
||||
<property name="text">
|
||||
<string>Resume State</string>
|
||||
|
|
|
@ -615,7 +615,10 @@ void QtHostInterface::changeDisc(const QString& new_disc_filename)
|
|||
if (!m_system)
|
||||
return;
|
||||
|
||||
m_system->InsertMedia(new_disc_filename.toStdString().c_str());
|
||||
if (!new_disc_filename.isEmpty())
|
||||
m_system->InsertMedia(new_disc_filename.toStdString().c_str());
|
||||
else
|
||||
m_system->RemoveMedia();
|
||||
}
|
||||
|
||||
static QString FormatTimestampForSaveStateMenu(u64 timestamp)
|
||||
|
|
Loading…
Reference in a new issue