mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-03 07:10:08 +01:00
26 lines
433 B
C++
26 lines
433 B
C++
#pragma once
|
|
|
|
#include "vfs_dialog_path_widget.h"
|
|
|
|
#include <memory>
|
|
|
|
namespace cfg
|
|
{
|
|
class string;
|
|
}
|
|
|
|
class gui_settings;
|
|
|
|
class vfs_dialog_tab : public vfs_dialog_path_widget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit vfs_dialog_tab(const QString& name, gui_save list_location, cfg::string* cfg_node, std::shared_ptr<gui_settings> _gui_settings, QWidget* parent = nullptr);
|
|
|
|
void set_settings() const;
|
|
|
|
private:
|
|
cfg::string* m_cfg_node;
|
|
};
|