mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-04-21 01:38:56 +02:00
Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/2547 Reviewed-by: MaranBr <maranbr@eden-emu.dev> Co-authored-by: lizzie <lizzie@eden-emu.dev> Co-committed-by: lizzie <lizzie@eden-emu.dev>
50 lines
1.1 KiB
C++
50 lines
1.1 KiB
C++
// SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
// SPDX-FileCopyrightText: Copyright 2017 Citra Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <memory>
|
|
#include <QDialog>
|
|
#include <QFutureWatcher>
|
|
#include "yuzu/multiplayer/validation.h"
|
|
|
|
namespace Ui {
|
|
class DirectConnect;
|
|
}
|
|
|
|
namespace Core {
|
|
class System;
|
|
}
|
|
|
|
class DirectConnectWindow : public QDialog {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit DirectConnectWindow(Core::System& system_, QWidget* parent = nullptr);
|
|
~DirectConnectWindow();
|
|
|
|
void RetranslateUi();
|
|
|
|
signals:
|
|
/**
|
|
* Signalled by this widget when it is closing itself and destroying any state such as
|
|
* connections that it might have.
|
|
*/
|
|
void Closed();
|
|
void SaveConfig();
|
|
|
|
private slots:
|
|
void OnConnection();
|
|
|
|
private:
|
|
void Connect();
|
|
void BeginConnecting();
|
|
void EndConnecting();
|
|
|
|
QFutureWatcher<void>* watcher;
|
|
std::unique_ptr<Ui::DirectConnect> ui;
|
|
Validation validation;
|
|
Core::System& system;
|
|
};
|