mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-02-15 04:05:42 +01:00
29 lines
513 B
C++
29 lines
513 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();
|
|
|
|
bool does_user_want_dark_theme() const
|
|
{
|
|
return m_user_wants_dark_theme;
|
|
}
|
|
private:
|
|
std::unique_ptr<Ui::welcome_dialog> ui;
|
|
std::shared_ptr<gui_settings> m_gui_settings;
|
|
bool m_user_wants_dark_theme = false;
|
|
};
|