mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-03 05:21:25 +12:00
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
26 lines
409 B
C++
26 lines
409 B
C++
#pragma once
|
|
|
|
#include <QDialog>
|
|
|
|
class music_handler_base;
|
|
|
|
namespace Ui
|
|
{
|
|
class music_player_dialog;
|
|
}
|
|
|
|
class music_player_dialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit music_player_dialog(QWidget* parent = nullptr);
|
|
~music_player_dialog();
|
|
|
|
private:
|
|
void select_file();
|
|
|
|
std::unique_ptr<Ui::music_player_dialog> ui;
|
|
std::unique_ptr<music_handler_base> m_handler;
|
|
std::string m_file_path;
|
|
};
|