rpcsx/rpcs3/rpcs3qt/welcome_dialog.h
Eladash 83e22fa9f0 Qt: Make welcome dialog accessible through F1 or Help menu
Enable window close button after "I have read the Quickstart" is checked.
2023-06-25 20:16:55 +03:00

24 lines
394 B
C++

#pragma once
#include <QDialog>
namespace Ui
{
class welcome_dialog;
}
class gui_settings;
class welcome_dialog : public QDialog
{
Q_OBJECT
public:
explicit welcome_dialog(std::shared_ptr<gui_settings> gui_settings, bool is_manual_show, QWidget* parent = nullptr);
~welcome_dialog();
private:
std::unique_ptr<Ui::welcome_dialog> ui;
std::shared_ptr<gui_settings> m_gui_settings;
};