mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-24 06:35:42 +00:00
28 lines
527 B
C++
28 lines
527 B
C++
#pragma once
|
|
#include "core/types.h"
|
|
#include <QtWidgets/QWidget>
|
|
|
|
#include "ui_biossettingswidget.h"
|
|
|
|
class QtHostInterface;
|
|
class SettingsDialog;
|
|
|
|
class BIOSSettingsWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit BIOSSettingsWidget(QtHostInterface* host_interface, QWidget* parent, SettingsDialog* dialog);
|
|
~BIOSSettingsWidget();
|
|
|
|
private Q_SLOTS:
|
|
void refreshList();
|
|
void browseSearchDirectory();
|
|
void openSearchDirectory();
|
|
|
|
private:
|
|
Ui::BIOSSettingsWidget m_ui;
|
|
|
|
QtHostInterface* m_host_interface;
|
|
};
|