mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-24 06:35:42 +00:00
25 lines
439 B
C++
25 lines
439 B
C++
#pragma once
|
|
|
|
#include <QtWidgets/QWidget>
|
|
|
|
#include "ui_consolesettingswidget.h"
|
|
|
|
class QtHostInterface;
|
|
|
|
class ConsoleSettingsWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ConsoleSettingsWidget(QtHostInterface* host_interface, QWidget* parent = nullptr);
|
|
~ConsoleSettingsWidget();
|
|
|
|
private Q_SLOTS:
|
|
void onBrowseBIOSPathButtonClicked();
|
|
|
|
private:
|
|
Ui::ConsoleSettingsWidget m_ui;
|
|
|
|
QtHostInterface* m_host_interface;
|
|
};
|