mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-05-29 23:03:18 +00:00
* Minor Qt GUI update * Update gui_context_menus.h * Update gui_context_menus.h * Update game_info.cpp
28 lines
No EOL
509 B
C++
28 lines
No EOL
509 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;
|
|
}; |