Browse Source
Revert "[qt] Ryujinx save data link (#2815)"
Revert "[qt] Ryujinx save data link (#2815)"
This reverts commit 39f226a853.
pull/3309/head
25 changed files with 4871 additions and 192 deletions
-
2src/common/CMakeLists.txt
-
1src/common/fs/fs_paths.h
-
33src/common/fs/path_util.cpp
-
18src/common/fs/path_util.h
-
12src/frontend_common/data_manager.cpp
-
4src/frontend_common/data_manager.h
-
3src/qt_common/CMakeLists.txt
-
2src/qt_common/abstract/qt_frontend_util.cpp
-
6src/qt_common/abstract/qt_frontend_util.h
-
10src/qt_common/qt_common.cpp
-
15src/qt_common/qt_string_lookup.h
-
6src/qt_common/util/content.cpp
-
9src/qt_common/util/content.h
-
2src/qt_common/util/game.cpp
-
2src/qt_common/util/path.cpp
-
3src/yuzu/CMakeLists.txt
-
2src/yuzu/data_dialog.cpp
-
4src/yuzu/game_list.cpp
-
1src/yuzu/game_list.h
-
4799src/yuzu/main.cpp
-
1src/yuzu/main_window.h
-
9src/yuzu/migration_worker.cpp
-
6src/yuzu/migration_worker.h
-
32src/yuzu/ryujinx_dialog.h
-
81src/yuzu/ryujinx_dialog.ui
@ -1,7 +1,7 @@ |
|||||
// SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project
|
// SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project
|
||||
// SPDX-License-Identifier: GPL-3.0-or-later
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
|
||||
#include "frontend.h"
|
|
||||
|
#include "qt_frontend_util.h"
|
||||
#include "qt_common/qt_common.h"
|
#include "qt_common/qt_common.h"
|
||||
|
|
||||
#ifdef YUZU_QT_WIDGETS
|
#ifdef YUZU_QT_WIDGETS
|
||||
4799
src/yuzu/main.cpp
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
@ -1,32 +0,0 @@ |
|||||
// SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project |
|
||||
// SPDX-License-Identifier: GPL-3.0-or-later |
|
||||
|
|
||||
#ifndef RYUJINX_DIALOG_H |
|
||||
#define RYUJINX_DIALOG_H |
|
||||
|
|
||||
#include <QDialog> |
|
||||
#include <filesystem> |
|
||||
|
|
||||
namespace Ui { |
|
||||
class RyujinxDialog; |
|
||||
} |
|
||||
|
|
||||
class RyujinxDialog : public QDialog |
|
||||
{ |
|
||||
Q_OBJECT |
|
||||
|
|
||||
public: |
|
||||
explicit RyujinxDialog(std::filesystem::path eden_path, std::filesystem::path ryu_path, QWidget *parent = nullptr); |
|
||||
~RyujinxDialog(); |
|
||||
|
|
||||
private slots: |
|
||||
void fromEden(); |
|
||||
void fromRyujinx(); |
|
||||
|
|
||||
private: |
|
||||
Ui::RyujinxDialog *ui; |
|
||||
std::filesystem::path m_eden; |
|
||||
std::filesystem::path m_ryu; |
|
||||
}; |
|
||||
|
|
||||
#endif // RYUJINX_DIALOG_H |
|
||||
@ -1,81 +0,0 @@ |
|||||
<?xml version="1.0" encoding="UTF-8"?> |
|
||||
<ui version="4.0"> |
|
||||
<class>RyujinxDialog</class> |
|
||||
<widget class="QDialog" name="RyujinxDialog"> |
|
||||
<property name="geometry"> |
|
||||
<rect> |
|
||||
<x>0</x> |
|
||||
<y>0</y> |
|
||||
<width>404</width> |
|
||||
<height>170</height> |
|
||||
</rect> |
|
||||
</property> |
|
||||
<property name="windowTitle"> |
|
||||
<string>Ryujinx Link</string> |
|
||||
</property> |
|
||||
<layout class="QVBoxLayout" name="verticalLayout"> |
|
||||
<item> |
|
||||
<widget class="QLabel" name="label"> |
|
||||
<property name="sizePolicy"> |
|
||||
<sizepolicy hsizetype="Preferred" vsizetype="Expanding"> |
|
||||
<horstretch>0</horstretch> |
|
||||
<verstretch>0</verstretch> |
|
||||
</sizepolicy> |
|
||||
</property> |
|
||||
<property name="text"> |
|
||||
<string>Linking save data to Ryujinx lets both Ryujinx and Eden reference the same save files for your games. |
|
||||
|
|
||||
By selecting "From Eden", previous save data stored in Ryujinx will be deleted, and vice versa for "From Ryujinx".</string> |
|
||||
</property> |
|
||||
<property name="wordWrap"> |
|
||||
<bool>true</bool> |
|
||||
</property> |
|
||||
</widget> |
|
||||
</item> |
|
||||
<item> |
|
||||
<layout class="QHBoxLayout" name="horizontalLayout"> |
|
||||
<item> |
|
||||
<widget class="QPushButton" name="eden"> |
|
||||
<property name="text"> |
|
||||
<string>From Eden</string> |
|
||||
</property> |
|
||||
</widget> |
|
||||
</item> |
|
||||
<item> |
|
||||
<widget class="QPushButton" name="ryujinx"> |
|
||||
<property name="text"> |
|
||||
<string>From Ryujinx</string> |
|
||||
</property> |
|
||||
</widget> |
|
||||
</item> |
|
||||
<item> |
|
||||
<widget class="QPushButton" name="cancel"> |
|
||||
<property name="text"> |
|
||||
<string>Cancel</string> |
|
||||
</property> |
|
||||
</widget> |
|
||||
</item> |
|
||||
</layout> |
|
||||
</item> |
|
||||
</layout> |
|
||||
</widget> |
|
||||
<resources/> |
|
||||
<connections> |
|
||||
<connection> |
|
||||
<sender>cancel</sender> |
|
||||
<signal>clicked()</signal> |
|
||||
<receiver>RyujinxDialog</receiver> |
|
||||
<slot>reject()</slot> |
|
||||
<hints> |
|
||||
<hint type="sourcelabel"> |
|
||||
<x>331</x> |
|
||||
<y>147</y> |
|
||||
</hint> |
|
||||
<hint type="destinationlabel"> |
|
||||
<x>201</x> |
|
||||
<y>84</y> |
|
||||
</hint> |
|
||||
</hints> |
|
||||
</connection> |
|
||||
</connections> |
|
||||
</ui> |
|
||||
Write
Preview
Loading…
Cancel
Save
Reference in new issue