2020-09-22 13:08:07 +00:00
|
|
|
#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();
|
|
|
|
|
2020-09-23 12:53:51 +00:00
|
|
|
private Q_SLOTS:
|
|
|
|
void refreshList();
|
|
|
|
void browseSearchDirectory();
|
|
|
|
void openSearchDirectory();
|
|
|
|
|
2020-09-22 13:08:07 +00:00
|
|
|
private:
|
|
|
|
Ui::BIOSSettingsWidget m_ui;
|
|
|
|
|
|
|
|
QtHostInterface* m_host_interface;
|
|
|
|
};
|