mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-06-04 09:43:16 +00:00
* more fixes to make the translation work * If size is disabled, it will not appear on the patches screen * Update game_install_dialog.h
32 lines
No EOL
641 B
C++
32 lines
No EOL
641 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 {
|
|
Q_OBJECT
|
|
public:
|
|
GameInstallDialog();
|
|
~GameInstallDialog();
|
|
|
|
private slots:
|
|
void BrowseGamesDirectory();
|
|
void BrowseAddonsDirectory();
|
|
|
|
private:
|
|
QWidget* SetupGamesDirectory();
|
|
QWidget* SetupAddonsDirectory();
|
|
QWidget* SetupDialogActions();
|
|
void Save();
|
|
|
|
private:
|
|
QLineEdit* m_gamesDirectory;
|
|
QLineEdit* m_addonsDirectory;
|
|
}; |