Qt: implement music player dialog for music handler tests
Some checks are pending
Generate Translation Template / Generate Translation Template (push) Waiting to run
Build RPCS3 / RPCS3 Linux ubuntu-24.04 gcc (push) Waiting to run
Build RPCS3 / RPCS3 Linux ubuntu-24.04-arm clang (push) Waiting to run
Build RPCS3 / RPCS3 Linux ubuntu-24.04 clang (push) Waiting to run
Build RPCS3 / RPCS3 Windows (push) Waiting to run

This commit is contained in:
Megamouse 2025-04-23 00:17:21 +02:00
parent 22c184bf75
commit b2feff7d38
10 changed files with 311 additions and 1 deletions

View file

@ -41,6 +41,7 @@
#include "basic_mouse_settings_dialog.h"
#include "vfs_tool_dialog.h"
#include "welcome_dialog.h"
#include "music_player_dialog.h"
#include <thread>
#include <unordered_set>
@ -3143,6 +3144,12 @@ void main_window::CreateConnects()
dlg->show();
});
connect(ui->actionMusic_Player, &QAction::triggered, this, [this]()
{
music_player_dialog* dlg = new music_player_dialog(this);
dlg->open();
});
connect(ui->showDebuggerAct, &QAction::triggered, this, [this](bool checked)
{
checked ? m_debugger_frame->show() : m_debugger_frame->hide();