mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-14 18:58:36 +12:00
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
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:
parent
22c184bf75
commit
b2feff7d38
10 changed files with 311 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue