BIOS: Automatically detect images, improve selection UI
This commit is contained in:
22
src/duckstation-qt/biossettingswidget.h
Normal file
22
src/duckstation-qt/biossettingswidget.h
Normal file
@@ -0,0 +1,22 @@
|
||||
#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:
|
||||
Ui::BIOSSettingsWidget m_ui;
|
||||
|
||||
QtHostInterface* m_host_interface;
|
||||
};
|
||||
Reference in New Issue
Block a user