Files
eden/src/yuzu/configuration/configure_network.h
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
609 B
C++
Raw Normal View History

// SPDX-FileCopyrightText: Copyright 2019 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2019-04-28 19:01:23 -04:00
#pragma once
#include <memory>
#include <QWidget>
namespace Ui {
class ConfigureNetwork;
2019-04-28 19:01:23 -04:00
}
class ConfigureNetwork : public QWidget {
2019-04-28 19:01:23 -04:00
Q_OBJECT
public:
explicit ConfigureNetwork(const Core::System& system_, QWidget* parent = nullptr);
~ConfigureNetwork() override;
2019-04-28 19:01:23 -04:00
2019-06-20 20:31:17 -04:00
void ApplyConfiguration();
2019-04-28 19:01:23 -04:00
private:
2022-05-01 20:36:10 -07:00
void changeEvent(QEvent*) override;
void RetranslateUI();
2019-06-20 20:31:17 -04:00
void SetConfiguration();
2019-04-28 19:01:23 -04:00
std::unique_ptr<Ui::ConfigureNetwork> ui;
const Core::System& system;
2019-04-28 19:01:23 -04:00
};