Play-/Source/ui_unix/vfsmanagerdialog.h

31 lines
452 B
C
Raw Normal View History

2017-12-21 18:21:44 -05:00
#pragma once
2016-09-06 00:03:02 +01:00
#include "VfsDevice.h"
2017-12-21 18:21:44 -05:00
#include <QDialog>
2016-09-06 00:03:02 +01:00
2017-12-21 18:21:44 -05:00
namespace Ui
{
2016-09-06 00:03:02 +01:00
class VFSManagerDialog;
}
class VFSManagerDialog : public QDialog
{
2017-12-21 18:21:44 -05:00
Q_OBJECT
2016-09-06 00:03:02 +01:00
public:
2017-12-21 18:21:44 -05:00
explicit VFSManagerDialog(QWidget* parent = 0);
~VFSManagerDialog();
Ui::VFSManagerDialog* ui;
void UpdateList();
2016-09-06 00:03:02 +01:00
protected:
2017-12-21 18:21:44 -05:00
void accept() Q_DECL_OVERRIDE;
2016-09-06 00:03:02 +01:00
private slots:
2017-12-21 18:21:44 -05:00
void on_tableView_doubleClicked(const QModelIndex& index);
2016-09-06 00:03:02 +01:00
private:
2017-12-21 18:21:44 -05:00
DeviceList m_devices;
2016-09-06 00:03:02 +01:00
};