mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-08 09:40:23 +01:00
19 lines
311 B
C++
19 lines
311 B
C++
#pragma once
|
|
|
|
#include <QDialog>
|
|
#include <QListWidget>
|
|
|
|
class pkg_install_dialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit pkg_install_dialog(const QStringList& paths, QWidget* parent = nullptr);
|
|
QStringList GetPathsToInstall() const;
|
|
|
|
private:
|
|
void MoveItem(int offset);
|
|
|
|
QListWidget* m_dir_list;
|
|
};
|