mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-01-21 14:01:41 +00:00
0f27e0edf2
- Added a trophy viewer (right click on game ==> trophy viewer) - Enabled Run button. - Switched gui settings to toml. - Added recent files (6 max) - Applied @raphaelthegreat suggestions and corrections (Thanks a lot). - Fixed several bugs and crashes. - Full screen should disabled by default. - Added region in list mode. - Added a simple temp elf list widget. - Added messages when extracting pkg (ex: installing a patch before the game...etc)
27 lines
508 B
C++
27 lines
508 B
C++
// SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <QDialog>
|
|
#include "common/config.h"
|
|
#include "common/path_util.h"
|
|
|
|
class QLineEdit;
|
|
|
|
class GameInstallDialog final : public QDialog {
|
|
public:
|
|
GameInstallDialog();
|
|
~GameInstallDialog();
|
|
|
|
private slots:
|
|
void Browse();
|
|
|
|
private:
|
|
QWidget* SetupGamesDirectory();
|
|
QWidget* SetupDialogActions();
|
|
void Save();
|
|
|
|
private:
|
|
QLineEdit* m_gamesDirectory;
|
|
}; |