mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-06-02 20:55:23 -06:00
37 lines
1.0 KiB
C++
37 lines
1.0 KiB
C++
#pragma once
|
|
|
|
#include <QDialog>
|
|
#include <QListWidget>
|
|
#include <QLabel>
|
|
#include <QDialogButtonBox>
|
|
|
|
namespace compat
|
|
{
|
|
struct package_info;
|
|
}
|
|
|
|
class game_compatibility;
|
|
|
|
class pkg_install_dialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit pkg_install_dialog(const QStringList& paths, bool from_boot, const game_compatibility* compat, QWidget* parent = nullptr);
|
|
std::vector<compat::package_info> get_paths_to_install() const;
|
|
bool precompile_caches() const { return m_precompile_caches; }
|
|
bool create_desktop_shortcuts() const { return m_create_desktop_shortcuts; }
|
|
bool create_app_shortcut() const { return m_create_app_shortcut; }
|
|
bool create_steam_shortcut() const { return m_create_steam_shortcut; }
|
|
|
|
private:
|
|
void update_info(QLabel* installation_info, QDialogButtonBox* buttons) const;
|
|
void move_item(int offset) const;
|
|
|
|
QListWidget* m_dir_list = nullptr;
|
|
bool m_precompile_caches = false;
|
|
bool m_create_desktop_shortcuts = false;
|
|
bool m_create_app_shortcut = false;
|
|
bool m_create_steam_shortcut = false;
|
|
};
|