mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-05 16:20:22 +01:00
- use normal selection instead of doubleclick - move SaveSettings out of the tabs to reduce file access - translate EmptyPath as well - some other minor refactors to reduce lines of code
18 lines
381 B
C++
18 lines
381 B
C++
#pragma once
|
|
|
|
#include "vfs_dialog_tab.h"
|
|
|
|
#include <QTabWidget>
|
|
#include <QDialog>
|
|
|
|
class vfs_dialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit vfs_dialog(std::shared_ptr<gui_settings> guiSettings, std::shared_ptr<emu_settings> emuSettings, QWidget* parent = nullptr);
|
|
private:
|
|
std::shared_ptr<gui_settings> m_gui_settings;
|
|
std::shared_ptr<emu_settings> m_emu_settings;
|
|
};
|