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

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

49 lines
1.5 KiB
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
#include <QtConcurrent/QtConcurrent>
2021-04-14 16:07:40 -07:00
#include "common/settings.h"
#include "core/core.h"
2021-12-25 20:27:52 +01:00
#include "core/internal_network/network_interface.h"
#include "ui_configure_network.h"
#include "yuzu/configuration/configure_network.h"
2019-04-28 19:01:23 -04:00
ConfigureNetwork::ConfigureNetwork(const Core::System& system_, QWidget* parent)
: QWidget(parent), ui(std::make_unique<Ui::ConfigureNetwork>()), system{system_} {
2019-04-28 19:01:23 -04:00
ui->setupUi(this);
ui->network_interface->addItem(tr("None"));
2021-08-13 12:39:14 +02:00
for (const auto& iface : Network::GetAvailableNetworkInterfaces()) {
ui->network_interface->addItem(QString::fromStdString(iface.name));
}
2019-06-20 20:31:17 -04:00
this->SetConfiguration();
2019-04-28 19:01:23 -04:00
}
ConfigureNetwork::~ConfigureNetwork() = default;
2019-04-28 19:01:23 -04:00
void ConfigureNetwork::ApplyConfiguration() {
Settings::values.network_interface = ui->network_interface->currentText().toStdString();
2019-04-28 19:01:23 -04:00
}
2022-05-01 20:36:10 -07:00
void ConfigureNetwork::changeEvent(QEvent* event) {
if (event->type() == QEvent::LanguageChange) {
RetranslateUI();
}
QWidget::changeEvent(event);
}
void ConfigureNetwork::RetranslateUI() {
2019-04-28 19:01:23 -04:00
ui->retranslateUi(this);
}
void ConfigureNetwork::SetConfiguration() {
const bool runtime_lock = !system.IsPoweredOn();
const std::string& network_interface = Settings::values.network_interface.GetValue();
ui->network_interface->setCurrentText(QString::fromStdString(network_interface));
ui->network_interface->setEnabled(runtime_lock);
2019-04-28 19:01:23 -04:00
}